File tree Expand file tree Collapse file tree
yarn-project/end-to-end/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function unwrapOptions<T>(options: NoirOption<T>[]): T[] {
1212 return options . filter ( ( option : any ) => option . _is_some ) . map ( ( option : any ) => option . _value ) ;
1313}
1414
15- describe ( 'e2e_singleton ' , ( ) => {
15+ describe ( 'e2e_note_getter ' , ( ) => {
1616 let wallet : Wallet ;
1717
1818 let teardown : ( ) => Promise < void > ;
@@ -27,8 +27,7 @@ describe('e2e_singleton', () => {
2727
2828 afterAll ( ( ) => teardown ( ) ) ;
2929
30- // Singleton tests:
31- it ( 'a test that inserts note and checks if ' , async ( ) => {
30+ it ( 'inserts notes from 0-9, then makes multiple queries specifying the total suite of comparators' , async ( ) => {
3231 const numbers = [ ...Array ( 10 ) . keys ( ) ] ;
3332 await Promise . all ( numbers . map ( number => contract . methods . insert_note ( number ) . send ( ) . wait ( ) ) ) ;
3433 await contract . methods . insert_note ( 5 ) . send ( ) . wait ( ) ;
You can’t perform that action at this time.
0 commit comments