15 lines
445 B
JavaScript
Raw Normal View History

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');
});