Skip to content

Commit

Permalink
fix: address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dylandepass committed Dec 18, 2023
1 parent 3cc284d commit 598cd5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/wtr/check-tab.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import sinon from 'sinon';
import chromeMock from './mocks/chrome.js';
import checkTab from '../../src/extension/check-tab.js';

chrome = chromeMock;
window.chrome = chromeMock;

describe('Test checkTab', () => {
const sandbox = sinon.createSandbox();
Expand Down
2 changes: 1 addition & 1 deletion test/wtr/project.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
deleteProject,
} from '../../src/extension/project.js';

chrome = chromeMock;
window.chrome = chromeMock;
window.fetch = fetchMock;

describe('Test utils', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/wtr/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const CONFIGS = [
},
];

chrome = chromeMock;
window.chrome = chromeMock;

describe('Test utils', () => {
const sandbox = sinon.createSandbox();
Expand Down

0 comments on commit 598cd5a

Please sign in to comment.