Skip to content

Commit 5d54143

Browse files
committed
fixing some tests
1 parent 075bd82 commit 5d54143

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/config/validator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ describe('The validator function', () => {
6262

6363
expect(() => {
6464
validator(config);
65-
}).to.throw('Cannot determine how to prefix the keys in manifest.json. Call Encore.setManifestKeyPrefix() to choose what path (e.g. /build/) to use');
65+
}).to.throw('Cannot determine how to prefix the keys in manifest.json. Call Encore.setManifestKeyPrefix() to choose what path (e.g. build/) to use');
6666
});
6767

6868
it('when outputPath and publicPath are incompatible, manifestKeyPrefix must be set', () => {
@@ -74,7 +74,7 @@ describe('The validator function', () => {
7474

7575
expect(() => {
7676
validator(config);
77-
}).to.throw('Cannot determine how to prefix the keys in manifest.json. Call Encore.setManifestKeyPrefix() to choose what path (e.g. /build/) to use');
77+
}).to.throw('Cannot determine how to prefix the keys in manifest.json. Call Encore.setManifestKeyPrefix() to choose what path (e.g. build/) to use');
7878
});
7979

8080
it('cannot use versioning with webpack-dev-server', () => {

0 commit comments

Comments
 (0)