Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit fb7e05c

Browse files
chore(docs): ensure all docs e2e tests are run
1 parent ea94e63 commit fb7e05c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/protractor-conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var config = require('../protractor-shared-conf').config;
44

55
config.specs = [
6-
'app/e2e/*.scenario.js'
6+
'app/e2e/**/*.scenario.js'
77
];
88

99
config.capabilities = {

protractor-conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var config = require('./protractor-shared-conf').config;
44

55
config.specs = [
66
'build/docs/ptore2e/**/*.js',
7-
'docs/app/e2e/*.scenario.js'
7+
'docs/app/e2e/**/*.scenario.js'
88
];
99

1010
config.capabilities = {

scripts/travis/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if [ $JOB = "unit" ]; then
99
grunt test:promises-aplus
1010
grunt test:unit --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
1111
grunt tests:docs --browsers SL_Chrome,SL_Safari,SL_Firefox,SL_IE_9,SL_IE_10,SL_IE_11 --reporters dots
12-
grunt test:travis-protractor --specs "docs/app/e2e/*.scenario.js"
12+
grunt test:travis-protractor --specs "docs/app/e2e/**/*.scenario.js"
1313
elif [ $JOB = "e2e" ]; then
1414
export TARGET_SPECS="build/docs/ptore2e/**/default_test.js"
1515
if [ $TEST_TARGET = "jquery" ]; then

0 commit comments

Comments
 (0)