Skip to content

Commit e1a94e4

Browse files
committed
WIP fix tests on windows
1 parent a925f3c commit e1a94e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/archivist/recorder/index.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ const MIME_TYPE = 'text/html';
1010
const FETCH_DATE = new Date('2000-01-01T12:00:00.000Z');
1111
const FETCH_DATE_LATER = new Date('2000-01-02T12:00:00.000Z');
1212

13-
describe('Recorder', () => {
13+
describe.only('Recorder', () => {
1414
const SERVICE_ID = 'test_service';
1515
const TYPE = 'Terms of Service';
1616

17-
for (const repositoryType of [ 'git', 'mongo' ]) {
17+
for (const repositoryType of ['mongo']) {
1818
describe(repositoryType, () => {
1919
let recorder;
2020

2121
before(async () => {
2222
const options = config.util.cloneDeep(config.get('@opentermsarchive/engine.recorder'));
2323

2424
options.versions.storage.type = repositoryType;
25-
options.snapshots.storage.type = repositoryType;
25+
options.snapshots.storage.type = 'git';
2626

2727
recorder = new Recorder(options);
2828
await recorder.initialize();

0 commit comments

Comments
 (0)