Skip to content

Commit

Permalink
fix(spec): re-enable CSS build test
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbch authored and ZauberNerd committed Feb 23, 2018
1 parent 92adefe commit c6fb856
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/spec/serve.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,11 @@ describe('production server', function() {
return /^vendor-.+\.js$/.test(name);
})
);
// #TODO: re-enable this!
// assert(
// fileNames.find(function(name) {
// return /^main-[0-9a-f]+\.css$/.test(name);
// })
// );
assert(
fileNames.find(function(name) {
return /^main-[0-9a-f]+\.css$/.test(name);
})
);
});

it('should deliver expected html page', function() {
Expand Down

0 comments on commit c6fb856

Please sign in to comment.