We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
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 messagesThe text was updated successfully, but these errors were encountered: