Skip to content

Commit 62ca1ec

Browse files
Fix Windows tests
1 parent 52000a3 commit 62ca1ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integrations/postcss/index.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ test(
671671
let process = await spawn('pnpm postcss src/index.css --output dist/out.css --watch --verbose')
672672

673673
await process.onStderr((message) =>
674-
message.includes('Package path ./does-not-exist is not exported from package'),
674+
message.includes('does-not-exist is not exported from package'),
675675
)
676676

677677
expect(await fs.dumpFiles('dist/*.css')).toMatchInlineSnapshot(`
@@ -711,7 +711,7 @@ test(
711711
`,
712712
)
713713
await process.onStderr((message) =>
714-
message.includes('Package path ./does-not-exist is not exported from package'),
714+
message.includes('does-not-exist is not exported from package'),
715715
)
716716
await process.onStderr((message) => message.includes('Finished src/index.css'))
717717

0 commit comments

Comments
 (0)