Open jonleung opened 8 years ago
Given this gulpfile.js:
gulpfile.js
... gulp.task('tests', function() { return gulp.src('specs/example.js') .pipe(jasmine({ integration: true })); }); ...
The below specs/example.js, with the weird characters at the bottom, will give me an output of no specs found
specs/example.js
no specs found
// specs/example.js describe("truth", function() { it("is truth", function() { expect(true).toBe(true); }); }); *$|~ Random ass stuff
The below specs/example.js, with the word characters at the bottom commented out, will run the tests are normal:
// specs/example.js describe("truth", function() { it("is truth", function() { expect(true).toBe(true); }); }); // *$|~ Random ass stuff
Note
This ONLY happens when integration: true, otherwise it gives me proper error messages
integration: true
+1
Given this
gulpfile.js
:The below
specs/example.js
, with the weird characters at the bottom, will give me an output ofno specs found
The below
specs/example.js
, with the word characters at the bottom commented out, will run the tests are normal:Note
This ONLY happens when
integration: true
, otherwise it gives me proper error messages