File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/jupyterlab-lsp/src/transclusions/ipython-bigquery Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ describe('Bigquery SQL extractors', () => {
48
48
});
49
49
});
50
50
*/
51
- describe ( '%bigquery line magic' , ( ) => {
51
+ /* describe('%bigquery line magic', () => {
52
52
it('extracts simple commands', () => {
53
53
let code = wrap_in_python_lines('%bigquery select * from work');
54
54
let { cell_code_kept, foreign_document_map } = extract(code);
@@ -58,7 +58,7 @@ describe('Bigquery SQL extractors', () => {
58
58
let document = get_the_only_virtual(foreign_document_map);
59
59
expect(document.language).to.equal('sql');
60
60
expect(document.value).to.equal('select * from work\n');
61
- } ) ;
61
+ });*/
62
62
/*
63
63
it('leaves out the connection specification', () => {
64
64
let code = wrap_in_python_lines(
You can’t perform that action at this time.
0 commit comments