Skip to content

Commit 31d9bfe

Browse files
committed
fix: cypress tests and docs build
1 parent b513e34 commit 31d9bfe

File tree

5 files changed

+1001
-468
lines changed

5 files changed

+1001
-468
lines changed

.github/dependency-review/config.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,18 @@ allow-licenses:
3535
- 'zlib-acknowledgement'
3636
- 'Zlib'
3737
allow-dependencies-licenses:
38-
- pkg:npm/sharp
38+
- 'pkg:npm/%40img/sharp-libvips-darwin-arm64@1.2.4'
39+
- 'pkg:npm/%40img/sharp-libvips-darwin-x64@1.2.4'
40+
- 'pkg:npm/%40img/sharp-libvips-linux-arm@1.2.4'
41+
- 'pkg:npm/%40img/sharp-libvips-linux-arm64@1.2.4'
42+
- 'pkg:npm/%40img/sharp-libvips-linux-ppc64@1.2.4'
43+
- 'pkg:npm/%40img/sharp-libvips-linux-riscv64@1.2.4'
44+
- 'pkg:npm/%40img/sharp-libvips-linux-s390x@1.2.4'
45+
- 'pkg:npm/%40img/sharp-libvips-linux-x64@1.2.4'
46+
- 'pkg:npm/%40img/sharp-libvips-linuxmusl-arm64@1.2.4'
47+
- 'pkg:npm/%40img/sharp-libvips-linuxmusl-x64@1.2.4'
48+
- 'pkg:npm/%40img/sharp-wasm32'
49+
- 'pkg:npm/%40img/sharp-win32-arm64'
50+
- 'pkg:npm/%40img/sharp-win32-ia32'
51+
- 'pkg:npm/%40img/sharp-win32-x64'
52+
- 'pkg:npm/unicode-match-property-value-ecmascript@2.2.1'

examples/next/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@
8484
"**/serve/serve-handler/path-to-regexp": "3.3.0",
8585
"@aws-amplify/data-schema": "^1.19.0",
8686
"@adobe/css-tools": "^4.3.2",
87-
"@babel/core": "^7.12.10",
88-
"@babel/preset-env": "^7.12.11",
89-
"@babel/register": "^7.13.16",
87+
"@babel/core": "^7.22.0",
88+
"@babel/preset-env": "^7.22.0",
89+
"@babel/register": "^7.22.0",
9090
"@sideway/formula": "^3.0.1",
9191
"@types/react": "^18.3.0",
9292
"@types/react-dom": "^18.3.0",

packages/e2e/cypress/support/commands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ Cypress.Commands.add(
110110
mimeType: fileType ?? 'text/plain',
111111
});
112112
}
113-
cy.get('input[type="file"]').selectFile(folderFiles, { force: true });
113+
const input = cy.get('input[type="file"]').wait(5000);
114+
const selected = input.selectFile(folderFiles[0], { force: true });
114115
}
115116
);

0 commit comments

Comments
 (0)