Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Jan 2, 2024
1 parent 8ff8340 commit b87ada0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dev/file.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ describe('dev/File', () => {
});

describe('#isJs()', () => {
it('returns true if extension is .js', () => {
it('returns true if extension is .js @jbudz #12345', () => {
const file = new File('file.js');
expect(file.isJs()).toBe(true);
expect(file.isJs()).not.toBe(true);
});
it('returns false if extension is .xml', () => {
const file = new File('file.xml');
Expand Down

0 comments on commit b87ada0

Please sign in to comment.