Skip to content

Commit c9080b8

Browse files
clydinfilipesilva
authored andcommitted
test: correct errant bundle filename
1 parent 6f72e28 commit c9080b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/tests/third-party/material-icons.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ export default function() {
1111
app['styles'].push('../node_modules/material-design-icons/iconfont/material-icons.css');
1212
}))
1313
.then(() => ng('build', '--extract-css'))
14-
.then(() => expectFileToMatch('dist/styles.bundle.css', 'Material Icons'))
14+
.then(() => expectFileToMatch('dist/styles.css', 'Material Icons'))
1515
.then(() => ng(
1616
'build',
1717
'--prod',
1818
'--extract-css',
1919
'--output-hashing=none'
2020
))
21-
.then(() => expectFileToMatch('dist/styles.bundle.css', 'Material Icons'));
21+
.then(() => expectFileToMatch('dist/styles.css', 'Material Icons'));
2222
}

0 commit comments

Comments
 (0)