[IMPROVEMENT] Place the cursor in the test `it` description
Opened this issue · 0 comments
CorentinTh commented
Describe the solution you'd like
Place the cursor in the test it
description when a new test is created
import { bar } from './user.models';
describe('user models', () => {
describe('bar', () => {
it('', () => { // <-- Place the cursor in the empty string
});
});
});