Skip to content
This repository was archived by the owner on May 30, 2019. It is now read-only.

Commit 3a61ec1

Browse files
committed
tag broken test with issue number and don't run by default
- add issue number to broken e2e test (#564) - by default, exclude tests tagged as broken Closes #563
1 parent 2972872 commit 3a61ec1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

browser/dev-tasks/tasks/e2e.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ var args = {
2222

2323
_.merge(args, require('yargs').argv);
2424

25+
if (!args.tags) {
26+
// by default, do not execute known-broken tests
27+
args.tags = '~@broken';
28+
}
29+
2530
if (args.sauce && args.selenium !== 'external') {
2631
args.selenium = 'sauce';
2732
}

specs/features/as-mary/vote-on-question.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Feature: Vote on Question
66
gains reputation points. When a downvote is made to a question, the author
77
of the question loses reputation points.
88

9-
@broken
9+
@broken @564
1010
Scenario: Mary votes for Joe's question
1111
Given I am "Joe"
1212
When I visit the "ask" page

0 commit comments

Comments
 (0)