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.
1 parent ebe2e35 commit 6dbe180Copy full SHA for 6dbe180
tests/e2e/tests/build/styles/css.ts
@@ -6,14 +6,14 @@ export default function() {
6
return writeMultipleFiles({
7
'src/styles.css': `
8
@import './imported-styles.css';
9
-
+
10
body { background-color: blue; }
11
`,
12
'src/imported-styles.css': `
13
p { background-color: red; }
14
`
15
})
16
.then(() => ng('build'))
17
- .then(() => expectFileToMatch('dist/styles.bundle.js', 'body { background-color: blue; }'))
18
- .then(() => expectFileToMatch('dist/styles.bundle.js', 'p { background-color: red; }'));
+ .then(() => expectFileToMatch('dist/styles.css', 'body { background-color: blue; }'))
+ .then(() => expectFileToMatch('dist/styles.css', 'p { background-color: red; }'));
19
}
0 commit comments