Skip to content

Commit

Permalink
Re-enable skipped intellisense tests (#15989)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne authored Sep 3, 2024
1 parent af6665a commit 9699218
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ suite('VSCode Intellisense Notebook and Interactive Code Completion @lsp', funct
logger.info(`Ended Test (completed) ${this.currentTest?.title}`);
});
suiteTeardown(() => closeNotebooksAndCleanUpAfterTests(disposables));
test.skip('Execute cell and get completions for variable', async () => {
test('Execute cell and get completions for variable', async () => {
await insertCodeCell('import sys\nprint(sys.executable)\na = 1', { index: 0 });
const cell = window.activeNotebookEditor?.notebook.cellAt(0)!;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ import { IKernelProvider } from '../../../../kernels/types';
)
);
}
test.skip('Dataframe completions', async () => {
test('Dataframe completions', async () => {
const fileName = path.basename(window.activeNotebookEditor!.notebook.uri.fsPath);
await testCompletions('df.', '.', fileName, 'Age', 'S', 'Sex');
});
Expand All @@ -192,7 +192,7 @@ import { IKernelProvider } from '../../../../kernels/types';
const fileName = path.basename(window.activeNotebookEditor!.notebook.uri.fsPath);
await testCompletions('df.Name.', '.', fileName, 'add_prefix', 'add_s', 'add_suffix');
});
test.skip('Dataframe assignment completions', async () => {
test('Dataframe assignment completions', async () => {
const fileName = path.basename(window.activeNotebookEditor!.notebook.uri.fsPath);
await testCompletions('var_name = df.', '.', fileName, 'Age', 'S', 'Sex');
});
Expand Down

0 comments on commit 9699218

Please sign in to comment.