Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Enable checking test linting/formatting errors (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicKramer authored Aug 2, 2017
1 parent 40365fb commit e8bd0cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@ gulp.task('watch', () => {
return gulp.watch(sources, ['test.compile']);
});

// TODO: Enable linting and checking format after the conversion to
// Typescript is complete.
gulp.task('test', ['test.run']);//, 'test.check-format', 'test.check-lint']);
gulp.task('test.coverage', ['test.coverage.run']);//, 'test.check-format', 'test.check-lint']);
gulp.task('test', ['test.run', 'test.check-format', 'test.check-lint']);
gulp.task('test.coverage', ['test.coverage.run', 'test.check-format', 'test.check-lint']);
gulp.task('default', ['compile', 'test.unit.compile', 'test.system.compile']);
2 changes: 1 addition & 1 deletion src/debuggee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class Debuggee {

// TODO: Determine if `statusMessage` should be optional or be required
// and be explicitly set to `null`.
properties = properties || { statusMessage: null };
properties = properties || {statusMessage: null};

if (!_.isString(properties.project)) {
throw new Error('properties.project must be a string');
Expand Down

0 comments on commit e8bd0cf

Please sign in to comment.