test: add unit tests to pipeline

This commit is contained in:
2023-05-31 15:33:19 +02:00
parent 45444d9373
commit 495a63977c
29 changed files with 232 additions and 484 deletions

View File

@@ -26,7 +26,10 @@ const tests = await Promise.all(
})),
);
describe('Easy AST', async function () {
describe('Easy AST', function () {
this.timeout(5000);
this.slow(2000);
it('should build the project', function () {
const project = lightweightProjectFromPath(projectPath, true);
expect(Object.keys(project).length).to.equal(tests.length);