mirror of
https://github.com/strapi/strapi.git
synced 2025-07-30 20:39:05 +00:00

* chore: lint test scripts * chore: clone playwright tests * chore: clean up test runner * feat: add jest test runner with concurrency * chore: documentation * chore: docs * chore: fix prettier * chore: lint * chore: remove log * chore: remove console.logs * fix: ensure enough test apps are available * chore: add log for yalc * chore: fix logging * chore: tests to todos
15 lines
445 B
JavaScript
15 lines
445 B
JavaScript
describe('--version', () => {
|
|
const instances = [];
|
|
|
|
beforeAll(async () => {
|
|
// TODO: get the test instances from helpers
|
|
});
|
|
beforeEach(async () => {
|
|
// TODO: reset the test instances
|
|
});
|
|
|
|
// TODO: run the cli command `strapi --version` and check exit code and output
|
|
// Should we use coffee (https://github.com/node-modules/coffee) or CLET (https://github.com/node-modules/clet) ?
|
|
it.todo('should output version');
|
|
});
|