Reputation: 563
It is possible to create a test suite in Protractor by adding the following to a config file:
suites: {
test1: "folder1/**/*.spec.js",
test2: "folder2/**/*.spec.js"
}
Where the test suite test1
will run all tests that are inside folder1
.
How can I create a test suite that will run all tests that are not inside the folder folder1
?
Upvotes: 1
Views: 286