Skip to content

Commit 5a3fc1d

Browse files
committed
Fix spec
1 parent 9b0f00a commit 5a3fc1d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@
6161
"*/**/*.{js,jsx,ts,tsx}": [
6262
"eslint"
6363
],
64-
"*/**/*.{js,jsx,ts,tsx,test}": [
65-
"bash -c \"npm run test\""
66-
],
6764
"src/**/*.{ts,tsx}": [
6865
"bash -c \"tsc --noEmit\""
6966
],

tests/e2e/specs/app.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe("upload-widget-vue sandbox", () => {
77
});
88
it("should contain a file upload button", async () => {
99
await App.open();
10-
await App.modalLauncher.click();
10+
await (await App.modalLauncher).click();
1111
await expect(App.modalButton).toHaveText("Upload a File");
1212
});
1313
});

0 commit comments

Comments
 (0)