Add @nophantomjs tag to default cucumber profile
Use this tag for tests which can't work with PhantomJS, but which we can run with Selenium using some other profile (not implemented here). closes #6418
This commit is contained in:
parent
b32c844314
commit
3e31b91b11
3 changed files with 5 additions and 2 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
* Add basic html5 audio/video embedding support [#6418](https://github.com/diaspora/diaspora/pull/6418)
|
||||||
|
|
||||||
# 0.7.3.1
|
# 0.7.3.1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ screenshot_opts = "--require features --format pretty"
|
||||||
%>
|
%>
|
||||||
|
|
||||||
# 'normal' test runs
|
# 'normal' test runs
|
||||||
default: <%= std_opts %> -r features
|
default: <%= std_opts %> -r features --tags ~@nophantomjs
|
||||||
wip: -r features --tags @wip:3 --wip features
|
wip: -r features --tags @wip:3 --wip features
|
||||||
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip --tags ~@screenshots
|
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip --tags ~@screenshots
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
# We can create a separate cucumber profile that will run these tests with Selenium
|
||||||
|
@nophantomjs
|
||||||
@javascript
|
@javascript
|
||||||
Feature: oembed
|
Feature: oembed
|
||||||
In order to make videos easy accessible
|
In order to make videos easy accessible
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue