You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Full proposal is needed but here is some WIP code that we've internally discussed...
The idea here is that we'll extend mocha and automatically do special things based on either the test title or options.
# if Cypress.isBrowser("chrome")# describe "BROWSER=chrome chrome edge cases", -># it "a", -># it "b", -># it "c", -># Cypress._.times 100, (i) -># it "#{i+1} is a flaky test", ->## it "DUPLICATE=100 is a flaky test"#minimist(test.title)
# describe "a parent", { browser: 'safari' }, ->describe"BROWSER=safari a parent", ->it"is a flaky test", { browser: ['chrome', '!edge'] }, ->it"is a flaky test", { retryUntilFailure:true }, ->it"is a flaky test", { repeat:100 }, ->it"BROWSER=!edge,chrome,firefox", ->it"RETRY_UNTIL_FAILURE is a flaky test", ->it.only("aljskfej", ->)
it.retryUntilFailure(1).isBrowser("chrome", "is a flaky test", ->it.retryUntilFailure(1).isBrowser("chrome")("is a flaky test", ->
The text was updated successfully, but these errors were encountered:
Full proposal is needed but here is some WIP code that we've internally discussed...
The idea here is that we'll extend mocha and automatically do special things based on either the test title or options.
The text was updated successfully, but these errors were encountered: