File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ describe("doRequest", () => {
4646 expect ( res . getJson ( ) ) . toEqual ( { me : [ { name : "ok 200" } , { name : "ok 300" } , { name : "ok 400" } ] } ) ;
4747 } ) ;
4848
49- it ( "fails with two mutations since currently only single is supported" , async ( ) => {
49+ it ( "fails with two mutations since multiple mutations are supported yet " , async ( ) => {
5050 const client = await setup ( ) ;
5151 await setSchema ( client , `
5252 name: string @index(fulltext) .
@@ -76,7 +76,7 @@ describe("doRequest", () => {
7676 req . setCommitNow ( true ) ;
7777
7878 const res = client . newTxn ( ) . doRequest ( req ) ;
79- const EMPTY_ERROR = new Error ( `${ UNKNOWN_CODE } : Empty query ` ) ;
79+ const EMPTY_ERROR = new Error ( `${ UNKNOWN_CODE } : empty request ` ) ;
8080 await expect ( res ) . rejects . toEqual ( EMPTY_ERROR ) ;
8181 } ) ;
8282} ) ;
You can’t perform that action at this time.
0 commit comments