Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sammacbeth committed Feb 14, 2025
1 parent 511ba7c commit 4d2a979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit-test/helpers/mocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function mockTdsStorage(settings) {
const settingsReadyPromise = new Promise((resolve) => {
settingsResolve = resolve;
});
settings.ready = () => settingsReadyPromise
settings.ready = () => settingsReadyPromise;
const etags = require('../../shared/data/etags.json');
const remoteConfig = new RemoteConfig({ settings });
remoteConfig._loadFromURL = () =>
Expand All @@ -44,7 +44,7 @@ export function mockTdsStorage(settings) {
tds.surrogates._loadFromURL = () =>
Promise.resolve({
contents: require('./../data/surrogates.js').surrogates,
etag: 'surrogates'
etag: 'surrogates',
});
settingsResolve();
return tds;
Expand Down

0 comments on commit 4d2a979

Please sign in to comment.