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 0a6daa7 commit 46bc64aCopy full SHA for 46bc64a
test/integration/index.spec.js
@@ -191,12 +191,12 @@ describe('[INTEGRATION] index', function () {
191
var compiler = createCompiler({ checkSyntacticErrors: false }, true);
192
193
compiler.run(function(error, stats) {
194
- expect(stats.compilation.errors.length).to.be.equal(2);
+ expect(stats.compilation.errors.length).to.be.equal(1);
195
callback();
196
});
197
198
199
- it('should not find syntactic errors when checkSyntacticErrors is true', function (callback) {
+ it('should find syntactic errors when checkSyntacticErrors is true', function (callback) {
200
var compiler = createCompiler({ checkSyntacticErrors: true }, true);
201
202
0 commit comments