chore(tests): Added and cleaned up tests

This commit is contained in:
Timothy Stewart 2021-10-18 23:35:53 -05:00
parent 7d4dcdd6f6
commit d53c88ed52
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { trackGoogleEvent } from './google';
import { trackGoogleEvent } from '../google';
describe('google.js', () => {
const mockedGtag = jest.fn();

View File

@ -1,4 +1,4 @@
import { trackUmamiEvent } from './umami';
import { trackUmamiEvent } from '../umami';
describe('umami.js', () => {
const windowSpy = jest.spyOn(global, 'window', 'get');