@@ -42,7 +42,7 @@ describe("appendQuery", () => {
42
42
const expected = `\n${ queries [ 0 ] } ` ;
43
43
cy . getEditorContent ( ) . should ( "have.value" , expected ) ;
44
44
cy . getSelectedLines ( ) . should ( "have.length" , 1 ) ;
45
- cy . matchImageSnapshot ( ) ; // screenshot diff
45
+ // cy.matchImageSnapshot(); // screenshot diff
46
46
} ) ;
47
47
48
48
it ( "should append and select second query" , ( ) => {
@@ -109,7 +109,7 @@ describe("appendQuery", () => {
109
109
const expected = `--a\n--b\n\n${ queries [ 0 ] } ` ;
110
110
cy . getEditorContent ( ) . should ( "have.value" , expected ) ;
111
111
cy . getSelectedLines ( ) . should ( "have.length" , 1 ) ;
112
- cy . matchImageSnapshot ( ) ;
112
+ // cy.matchImageSnapshot();
113
113
} ) ;
114
114
115
115
it ( "should correctly append and add surrounding new lines when there are two lines and position is last line which is empty" , ( ) => {
@@ -200,7 +200,7 @@ describe("autocomplete", () => {
200
200
cy . typeQuery ( "select * from teletubies" ) ;
201
201
cy . getAutocomplete ( ) . should ( "not.be.visible" ) . clearEditor ( ) ;
202
202
203
- cy . matchImageSnapshot ( ) ;
203
+ // cy.matchImageSnapshot();
204
204
} ) ;
205
205
206
206
it ( "should be case insensitive" , ( ) => {
0 commit comments