@@ -662,44 +662,6 @@ describe('IexecPoco1', () => {
662662 } ) ;
663663 } ) ;
664664
665- [
666- {
667- datasetTag : TAG_TEE_SCONE ,
668- workerpoolTag : TAG_TEE_TDX ,
669- description : 'Scone tag (0x3) and workerpool has TDX tag (0x9)' ,
670- } ,
671- {
672- datasetTag : TAG_TEE_GRAMINE ,
673- workerpoolTag : TAG_TEE_TDX ,
674- description : 'Gramine tag (0x5) and workerpool has TDX tag (0x9)' ,
675- } ,
676- {
677- datasetTag : TAG_TEE_TDX ,
678- workerpoolTag : TAG_TEE_SCONE ,
679- description : 'TDX tag (0x9) and workerpool has Scone tag (0x3)' ,
680- } ,
681- {
682- datasetTag : TAG_ALL_TEE_FRAMEWORKS ,
683- workerpoolTag : TAG_TEE ,
684- description : 'all TEE framework bits (0xF) and workerpool has TEE only (0x1)' ,
685- } ,
686- ] . forEach ( ( { datasetTag, workerpoolTag, description } ) => {
687- it ( `Should match orders when dataset has ${ description } ` , async ( ) => {
688- orders . dataset . tag = datasetTag ;
689- orders . workerpool . tag = workerpoolTag ;
690- orders . app . tag = TAG_TEE ;
691- orders . requester . tag = TAG_TEE ;
692-
693- await depositForRequesterAndSchedulerWithDefaultPrices ( volume ) ;
694- await signOrders ( iexecWrapper . getDomain ( ) , orders , ordersActors ) ;
695-
696- await expect ( iexecPocoAsRequester . matchOrders ( ...orders . toArray ( ) ) ) . to . emit (
697- iexecPoco ,
698- 'OrdersMatched' ,
699- ) ;
700- } ) ;
701- } ) ;
702-
703665 // TODO add success tests for:
704666 // - identity groups
705667 // - pre-signatures
0 commit comments