We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a51005 commit bb765d3Copy full SHA for bb765d3
tests/e2e/tests/commands/add/add-tailwindcss.ts
@@ -13,7 +13,7 @@ export default async function () {
13
try {
14
await ng('add', 'tailwindcss', '--skip-confirmation');
15
await expectFileToExist('.postcssrc.json');
16
- await expectFileToMatch('src/styles.css', /@import "tailwindcss";/);
+ await expectFileToMatch('src/styles.css', /@import 'tailwindcss';/);
17
await expectFileToMatch('package.json', /"tailwindcss":/);
18
await expectFileToMatch('package.json', /"@tailwindcss\/postcss":/);
19
await expectFileToMatch('package.json', /"postcss":/);
0 commit comments