Skip to content

Commit 46bc64a

Browse files
committed
implement requested changes
1 parent 0a6daa7 commit 46bc64a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/index.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,12 @@ describe('[INTEGRATION] index', function () {
191191
var compiler = createCompiler({ checkSyntacticErrors: false }, true);
192192

193193
compiler.run(function(error, stats) {
194-
expect(stats.compilation.errors.length).to.be.equal(2);
194+
expect(stats.compilation.errors.length).to.be.equal(1);
195195
callback();
196196
});
197197
});
198198

199-
it('should not find syntactic errors when checkSyntacticErrors is true', function (callback) {
199+
it('should find syntactic errors when checkSyntacticErrors is true', function (callback) {
200200
var compiler = createCompiler({ checkSyntacticErrors: true }, true);
201201

202202
compiler.run(function(error, stats) {

0 commit comments

Comments
 (0)