@@ -134,7 +134,7 @@ describe("Procedures", () => {
134134 } ) ;
135135
136136 describe ( "Procedure with Yield and nested clauses" , ( ) => {
137- it ( "Procedure with Where" , ( ) => {
137+ test ( "Procedure with Where" , ( ) => {
138138 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
139139
140140 procedure . where ( Cypher . true ) . and ( Cypher . false ) . return ( "*" ) ;
@@ -148,7 +148,7 @@ RETURN *"
148148 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
149149 } ) ;
150150
151- it ( "Procedure with Delete" , ( ) => {
151+ test ( "Procedure with Delete" , ( ) => {
152152 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
153153
154154 procedure . delete ( new Cypher . Node ( ) ) ;
@@ -161,7 +161,7 @@ DELETE this0"
161161 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
162162 } ) ;
163163
164- it ( "Procedure with Detach Delete" , ( ) => {
164+ test ( "Procedure with Detach Delete" , ( ) => {
165165 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
166166
167167 procedure . detachDelete ( new Cypher . Node ( ) ) ;
@@ -174,7 +174,7 @@ DETACH DELETE this0"
174174 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
175175 } ) ;
176176
177- it ( "Procedure with Remove" , ( ) => {
177+ test ( "Procedure with Remove" , ( ) => {
178178 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
179179
180180 procedure . remove ( new Cypher . Node ( ) . property ( "test" ) ) ;
@@ -187,7 +187,7 @@ REMOVE this0.test"
187187 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
188188 } ) ;
189189
190- it ( "Procedure with Set" , ( ) => {
190+ test ( "Procedure with Set" , ( ) => {
191191 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
192192
193193 procedure . set ( [ new Cypher . Variable ( ) . property ( "test" ) , new Cypher . Literal ( "hello" ) ] ) ;
201201 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
202202 } ) ;
203203
204- it ( "Procedure with Unwind" , ( ) => {
204+ test ( "Procedure with Unwind" , ( ) => {
205205 const yieldVar = new Cypher . Variable ( ) ;
206206 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( [ "test" , yieldVar ] ) ;
207207
@@ -215,7 +215,7 @@ UNWIND var0 AS var1"
215215 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
216216 } ) ;
217217
218- it ( "Procedure with Merge" , ( ) => {
218+ test ( "Procedure with Merge" , ( ) => {
219219 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
220220
221221 procedure . merge ( new Cypher . Pattern ( new Cypher . Node ( ) ) ) ;
@@ -228,7 +228,7 @@ MERGE (this0)"
228228 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
229229 } ) ;
230230
231- it ( "Procedure with Create" , ( ) => {
231+ test ( "Procedure with Create" , ( ) => {
232232 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) ;
233233
234234 procedure . create ( new Cypher . Pattern ( new Cypher . Node ( ) ) ) ;
@@ -241,7 +241,7 @@ CREATE (this0)"
241241 expect ( params ) . toMatchInlineSnapshot ( `{}` ) ;
242242 } ) ;
243243
244- it ( "Procedure with Order by" , ( ) => {
244+ test ( "Procedure with Order by" , ( ) => {
245245 const testVar = new Cypher . NamedVariable ( "test" ) ;
246246 const procedure = new Cypher . Procedure ( "custom-procedure" ) . yield ( "test" ) . orderBy ( testVar ) . skip ( 1 ) . limit ( 10 ) ;
247247
0 commit comments