TestArmada / magellan

Large Scale Automated Testing for Mocha, Nightwatch, Appium, Nodejs, etc
MIT License
287 stars 76 forks source link

Magellan Skip Tests #247

Open cortezcristian opened 6 years ago

cortezcristian commented 6 years ago

In other frameworks I can do .skip:

it.skip("Load the order page", function(){ ...});
it("Submit the purchase", function(){})

Is there a way to skip tests in magellan?

module.exports = new Test({

  tags: ["commerce", "smoke"],

  "Load the order page": function (client) {
    ...
  },

  "Submit the purchase": function (client) {
    ...
  }
});

I want to skip Load the order page

dinesh-rajaveeran commented 6 years ago

How did you end up doing this ?