Skip to content

Commit

Permalink
Fix imports..
Browse files Browse the repository at this point in the history
  • Loading branch information
OmniTroid committed Feb 11, 2024
1 parent de78a6b commit d8fa7d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webAO/components/__tests__/blips.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import createBlip from '../blip';
import createBlip from '../blip.js';

describe('createBlip', () => {
test('create 3 blips audios', () => {
Expand Down
2 changes: 1 addition & 1 deletion webAO/utils/__tests__/tryUrls.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fileExists from '../fileExists.js'
import tryUrls from '../tryUrls.js';
import transparentPng from '../../constants/transparentPng.js'
jest.mock('../fileExists')
jest.mock('../fileExists.ts')

const mockFileExists = fileExists as jest.MockedFunction<typeof fileExists>;

Expand Down

0 comments on commit d8fa7d7

Please sign in to comment.