We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fs.expectFileToContain
1 parent 5391827 commit f7fa77cCopy full SHA for f7fa77c
integrations/cli/index.test.ts
@@ -1303,15 +1303,15 @@ test(
1303
}
1304
`,
1305
)
1306
- await process.onStderr((m) => m.includes('Done in'))
1307
1308
- expect(await fs.dumpFiles('./dist/*.css')).toMatchInlineSnapshot(`
1309
- "
1310
- --- ./dist/out.css ---
1311
- :root, :host {
1312
- --color-blue-500: blue;
1313
- }
1314
1315
- `)
+ fs.expectFileToContain(
+ './dist/out.css',
+ css`
+ :root,
+ :host {
+ --color-blue-500: blue;
+ }
+ `,
+ )
1316
},
1317
0 commit comments