Skip to content

Commit

Permalink
Disable all reference tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kotborealis authored Sep 14, 2022
1 parent 2377eaa commit e27fd7b
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions test/integration/integration.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,5 @@ describe('document generation', () => {
const {exitCode} = await runCmd('cd test/integration/env && patchouli --type=revealjs');
assert.equal(exitCode, 0);
});

it('renders as in the reference', async () => {
fs.createReadStream('./test/integration/fixtures/reference_build.revealjs.html')
.pipe(fs.createWriteStream('./test/integration/artifacts/reference_build.revealjs.html'));

fs.createReadStream('./test/integration/env/build.revealjs.html')
.pipe(fs.createWriteStream('./test/integration/artifacts/build.revealjs.html'));

const {exitCode} = await runCmd(`
cmp
./test/integration/artifacts/reference_build.revealjs.html
./test/integration/artifacts/build.revealjs.html
`);
assert.equal(exitCode, 0);
});
});
});

0 comments on commit e27fd7b

Please sign in to comment.