You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are updating a test from synthetics beta version, but now when the push option creates a new bundle, the XLSX file is not included in the zip.
So our tests fail because we don't have the file to import.
The text was updated successfully, but these errors were encountered:
I created a project from scratch and added this test:
import{journey,expect,step}from'@elastic/synthetics'journey({name: 'import'},options=>{const{ page }=optionsstep('Go',async()=>{awaitpage.goto('https://www.file.io/');awaitpage.setInputFiles('input[type=file]','info-email.xlsx');awaitexpect(page.locator('#gatsby-focus-wrapper')).toContainText('Your file is ready to share!');})})
Create a file called info-email.xlsx in the root to upload. The content doesn't really matter in this case.
Apologies for the delay, Unfortunately the bundling phase can only bundle all the relevant JS/TS files and does not take any other extension as of now which is why you are seeing the journey fail. We would need to add support for XSLT extensions/loaders to get pushed when used as project monitors.
Description
We are updating a test from synthetics beta version, but now when the
push
option creates a new bundle, the XLSX file is not included in the zip.So our tests fail because we don't have the file to import.
The text was updated successfully, but these errors were encountered: