mirror of
https://github.com/strapi/strapi.git
synced 2025-08-10 17:58:07 +00:00
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');
|
||
|
});
|