Skip to content

Instantly share code, notes, and snippets.

@llun
Created March 13, 2015 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save llun/a55529f93ad45c2a79ed to your computer and use it in GitHub Desktop.
Save llun/a55529f93ad45c2a79ed to your computer and use it in GitHub Desktop.
Jasmine ES6
var gulp = require('gulp')
, jasmine = require('gulp-jasmine')
gulp.task('default', function() {
require('babel/register');
return gulp.src('test.js').pipe(jasmine())
});
describe("A suite", () => {
it("contains spec with an expectation", () => {
expect(true).toBe(true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment