Skip to content

Commit cbc326d

Browse files
committed
fix: fix tests after online merge resolution
1 parent b175246 commit cbc326d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/importers/PageImporter.spec.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ describe('PageImporter tests - fixtures', () => {
186186

187187
const md = await storageHandler.get(results[0].md);
188188
const expectedMD = await fs.readFile(path.resolve(__dirname, 'fixtures', `${feature}.spec.md`), 'utf-8');
189-
strictEqual(md.trim(), expectedMD.trim(), 'imported md is expected one');
189+
assertFn(md.trim(), expectedMD.trim(), 'imported md is expected one');
190190

191191
// parse md to verify mdast
192192
const mdast = unified()
@@ -247,6 +247,7 @@ describe('PageImporter tests - fixtures', () => {
247247
throw new Error('imported md is not expected one');
248248
}
249249
});
250+
});
250251

251252
it('import - video', async () => {
252253
await featureTest('video');

0 commit comments

Comments
 (0)