Skip to content

Commit

Permalink
fix up function name
Browse files Browse the repository at this point in the history
  • Loading branch information
Toxicable committed Feb 19, 2019
1 parent f4b84be commit b3e7b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/jasmine/test/coverage.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const {myFunction} = require('./is-string');
const {isString} = require('./is-string');

describe('spec in file ending with .test.js', () => {
it('should get coverage for a branched function', () => {
expect(myFunction(3)).toEqual(false);
expect(isString(3)).toEqual(false);
});
});

0 comments on commit b3e7b13

Please sign in to comment.