diff --git a/src/integrity.test.ts b/src/integrity.test.ts new file mode 100644 index 00000000..7763709c --- /dev/null +++ b/src/integrity.test.ts @@ -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(); + }); + }); +});