fix: add integrity test

pull/384/head
Webber 2022-04-11 23:50:18 +02:00
parent 1076be5d84
commit b45c762cc5
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { stat } from 'fs/promises';
describe('Integrity tests', () => {
describe('package-lock.json', () => {
it('does not exist', async () => {
await expect(stat(`${process.cwd()}/package-lock.json`)).rejects.toThrowError();
});
});
});