@@ -282,7 +282,8 @@ describe('flow:test:run', () => {
282282 testLevel : 'RunSpecifiedTests' ,
283283 tests : [
284284 {
285- className : 'flowtesting.MyFlowTests' ,
285+ namespace : 'flowtesting' ,
286+ className : 'MyFlowTests' ,
286287 testMethods : [ 'test1' , 'test2' ] ,
287288 } ,
288289 ] ,
@@ -312,7 +313,7 @@ describe('flow:test:run', () => {
312313
313314 await FlowRunTest . run ( [ '--suite-names' , 'MyFlowTest1,MyFlowTest2' , '--result-format' , 'human' ] ) ;
314315 expect ( flowStub . firstCall . args [ 0 ] ) . to . deep . equal ( {
315- category : FLOW_CATEGORY ,
316+ category : [ FLOW_CATEGORY ] ,
316317 skipCodeCoverage : true ,
317318 testLevel : 'RunSpecifiedTests' ,
318319 suiteNames : 'MyFlowTest1,MyFlowTest2' ,
@@ -324,7 +325,7 @@ describe('flow:test:run', () => {
324325
325326 await FlowRunTest . run ( [ '-s' , 'MyFlowTest1' , '-s' , 'MyFlowTest2' , '--result-format' , 'human' ] ) ;
326327 expect ( flowStub . firstCall . args [ 0 ] ) . to . deep . equal ( {
327- category : FLOW_CATEGORY ,
328+ category : [ FLOW_CATEGORY ] ,
328329 skipCodeCoverage : true ,
329330 testLevel : 'RunSpecifiedTests' ,
330331 suiteNames : 'MyFlowTest1,MyFlowTest2' ,
0 commit comments