test: refactor to run asynchronously (#174)

This commit is contained in:
hiroki osame
2023-03-27 05:44:16 -04:00
committed by GitHub
parent a0db0f3ece
commit e431444f95
7 changed files with 193 additions and 187 deletions

8
tests/specs/cli/index.ts Normal file
View File

@@ -0,0 +1,8 @@
import { testSuite } from 'manten';
export default testSuite(({ describe }) => {
describe('CLI', ({ runTestSuite }) => {
runTestSuite(import('./error-cases.js'));
runTestSuite(import('./commits.js'));
});
});