Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ...
  2. on('task', {
  3. allureTestStep () {
  4. const testStep = allure.createStep("Initial", () => {
  5. console.log("First Test")
  6. });
  7. testStep()
  8. return null
  9. }
  10. })
  11. ...
  12.  
  13. cy.task('allureTestStep')
  14.  
  15. allure-js-commons: Unexpected startStep() of initial. There is no parent step
  16. First Test
  17. allure-js-commons: Unexpected endStep(). There are no any steps running
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement