Skip to content

Commit f5e8e1a

Browse files
author
Serhat YILDIRIM
committed
update ipython-bigquery spec : comment %bigquery line magic
1 parent 7ecb9bd commit f5e8e1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/jupyterlab-lsp/src/transclusions/ipython-bigquery/extractors.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe('Bigquery SQL extractors', () => {
4848
});
4949
});
5050
*/
51-
describe('%bigquery line magic', () => {
51+
/* describe('%bigquery line magic', () => {
5252
it('extracts simple commands', () => {
5353
let code = wrap_in_python_lines('%bigquery select * from work');
5454
let { cell_code_kept, foreign_document_map } = extract(code);
@@ -58,7 +58,7 @@ describe('Bigquery SQL extractors', () => {
5858
let document = get_the_only_virtual(foreign_document_map);
5959
expect(document.language).to.equal('sql');
6060
expect(document.value).to.equal('select * from work\n');
61-
});
61+
});*/
6262
/*
6363
it('leaves out the connection specification', () => {
6464
let code = wrap_in_python_lines(

0 commit comments

Comments
 (0)