@@ -55,15 +55,15 @@ describe('ui', () => {
5555 suiteConfig = context . Feature ( 'basic suite @very @important' )
5656 expect ( suiteConfig . suite ) . is . ok
5757
58- suiteConfig . suite . tags . should . include ( '@very' )
59- suiteConfig . suite . tags . should . include ( '@important' )
58+ expect ( suiteConfig . suite . tags ) . to . include ( '@very' )
59+ expect ( suiteConfig . suite . tags ) . to . include ( '@important' )
6060
6161 suiteConfig . tag ( '@user' )
62- suiteConfig . suite . tags . should . include ( '@user' )
62+ expect ( suiteConfig . suite . tags ) . to . include ( '@user' )
6363
64- suiteConfig . suite . tags . should . not . include ( '@slow' )
64+ expect ( suiteConfig . suite . tags ) . to . not . include ( '@slow' )
6565 suiteConfig . tag ( 'slow' )
66- suiteConfig . suite . tags . should . include ( '@slow' )
66+ expect ( suiteConfig . suite . tags ) . to . include ( '@slow' )
6767 } )
6868
6969 it ( 'retries can be set' , ( ) => {
@@ -234,12 +234,12 @@ describe('ui', () => {
234234
235235 scenarioConfig = context . Scenario ( 'scenario @very @important' )
236236
237- scenarioConfig . test . tags . should . include ( '@cool' )
238- scenarioConfig . test . tags . should . include ( '@very' )
239- scenarioConfig . test . tags . should . include ( '@important' )
237+ expect ( scenarioConfig . test . tags ) . to . include ( '@cool' )
238+ expect ( scenarioConfig . test . tags ) . to . include ( '@very' )
239+ expect ( scenarioConfig . test . tags ) . to . include ( '@important' )
240240
241241 scenarioConfig . tag ( '@user' )
242- scenarioConfig . test . tags . should . include ( '@user' )
242+ expect ( scenarioConfig . test . tags ) . to . include ( '@user' )
243243 } )
244244
245245 it ( 'should dynamically inject dependencies' , ( ) => {
0 commit comments