Skip to content

Commit

Permalink
ci...
Browse files Browse the repository at this point in the history
  • Loading branch information
Cass Fridkin committed Apr 14, 2022
1 parent e1cc179 commit 5e1e148
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/wranglerjs-compat-webpack-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"jest": {
"restoreMocks": true,
"testTimeout": 120000,
"testTimeout": 180000,
"testRegex": ".*.(test|spec)\\.[jt]sx?$",
"transformIgnorePatterns": [
"node_modules/(?!find-up|locate-path|p-locate|p-limit|yocto-queue|path-exists|execa|strip-final-newline|npm-run-path|path-key|onetime|mimic-fn|human-signals|is-stream|get-port|supports-color)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ describe("messaging", () => {

expect(std.out).toMatchInlineSnapshot(`""`);
expect(std.err).toMatchInlineSnapshot(`""`);
expect(std.warn.replaceAll(process.cwd(), "[dir]")).toMatchInlineSnapshot(`
expect(
std.warn
.replaceAll(process.cwd(), "[dir]")
.replaceAll(process.cwd().replaceAll("\\", "/"), "[dir]")
).toMatchInlineSnapshot(`
"Setting \`target\` to \\"webworker\\"...
Running \`npm install\` in [dir]..."
`);
Expand Down

0 comments on commit 5e1e148

Please sign in to comment.