10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
|
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();
|
||
|
});
|
||
|
});
|
||
|
});
|