fix(core): update

This commit is contained in:
2024-05-09 00:05:16 +02:00
commit 73187eb20e
30 changed files with 6666 additions and 0 deletions

22
test/test.nonci.ts Normal file
View File

@ -0,0 +1,22 @@
import { tap, expect } from '@push.rocks/tapbundle';
delete process.env.CLI_CALL;
// process.env.CLOUDLY_TESTURL = 'http://localhost:3000';
import * as coreflow from '../ts/index.js';
if (process.env.CI) {
tap.start();
process.exit(0);
}
tap.test('should startup correctly', async () => {
await coreflow.runCli();
});
tap.test('should end correctly', async (tools) => {
await tools.delayFor(2000);
await coreflow.stop();
});
tap.start();