File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -27,34 +27,11 @@ suite("Integration Tests", () => {
2727 return vscode . Uri . joinPath ( workspace . uri , relative ) ;
2828 }
2929
30- test ( "Wait for python and code-d extensions " , async ( ) => {
30+ test ( "Wait for code-d extension " , async ( ) => {
3131 let coded = vscode . extensions . getExtension ( "webfreak.code-d" ) ! ;
3232 await coded . activate ( ) ;
3333 await sleep ( 5000 ) ; // give sufficient startup time
3434 } ) ;
3535
36- test ( "Recipe file" , async ( ) => {
37- let recipe = await vscode . window . showTextDocument (
38- await vscode . workspace . openTextDocument ( file ( "dub.sdl" ) ) ,
39- vscode . ViewColumn . One
40- ) ;
41-
42- await recipe . edit ( ( edit ) => {
43- edit . insert ( new vscode . Position ( 2 , 0 ) , "dep" ) ;
44- } ) ;
45-
46- await testCompletion (
47- recipe ,
48- new vscode . Position ( 2 , 3 ) ,
49- new vscode . CompletionList ( [
50- new vscode . CompletionItem (
51- "dependency" ,
52- vscode . CompletionItemKind . Field
53- ) ,
54- ] ) ,
55- "contains"
56- ) ;
57- } ) ;
58-
5936 // test('interactive', () => new Promise((resolve, reject) => {}));
6037} ) ;
You can’t perform that action at this time.
0 commit comments