File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,17 @@ suite('Extension Test Suite', () => {
2828 } ) ;
2929 } ) ;
3030
31- describe ( 'It registers saplings commands successfully' , ( ) => {
32- let commandList ;
33- before ( async ( ) => {
34- commandList = await vscode . commands . getCommands ( ) ;
35- } ) ;
36-
37- test ( 'It registers the sapling.generateTree command' , ( ) => {
38- expect ( commandList ) . to . be . an ( 'array' ) . that . does . include ( 'sapling.generateTree' ) ;
39- } ) ;
40- } ) ;
31+ // describe('It registers saplings commands successfully', () => {
32+ // let commandList;
33+ // before( (done) => {
34+ // vscode.commands.getCommands().then(commands => {
35+ // commandList = commands;
36+ // done();
37+ // });
38+ // });
39+
40+ // test('It registers the sapling.generateTree command', () => {
41+ // expect(commandList).to.be.an('array').that.does.include('sapling.generateTree');
42+ // });
43+ // });
4144} ) ;
You can’t perform that action at this time.
0 commit comments