Skip to content
Sign up
Sign in
This repository
Explore
Features
Enterprise
Blog
Star
35,099
Fork
14,173
angular
/
angular.js
Code
Issues
Pull Requests
Wiki
Pulse
Graphs
HTTPS
clone URL
Subversion
checkout URL
You can clone with
HTTPS
or
Subversion
.
Download ZIP
Permalink
angular.js
/
protractor-jenkins-conf.js
Newer
Older
100644
42 lines (31 sloc)
0.958 kb
Raw
Normal view
History
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
1
'
use strict
'
;
2
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 30, 2014
3
exports
.config
=
{
4
allScriptsTimeout
:
11000
,
5
6
specs
:
[
2240c11
chore(tests): implement e2e test harness outside of docs app
caitp
authored
Oct 15, 2014
7
'
test/e2e/tests/**/*.js
'
,
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
8
'
build/docs/ptore2e/**/*.js
'
,
63761fd
test(docs): improve docs e2e tests
petebacondarwin
authored
Sep 12, 2014
9
'
docs/app/e2e/*.scenario.js
'
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
10
],
11
12
capabilities
:
{
13
'
browserName
'
:
'
chrome
'
14
},
15
b4db713
fix(jenkins): reset baseUrl in protractor conf
jeffbcross
authored
Oct 28, 2014
16
baseUrl
:
'
http://localhost:8000/
'
,
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
17
18
framework
:
'
jasmine
'
,
19
20
onPrepare
:
function
() {
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
21
/* global angular: false, browser: false, jasmine: false */
22
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
23
// Disable animations so e2e tests run more quickly
24
var
disableNgAnimate
=
function
() {
2730007
chore(protractor): annotate $animate to allow tests to run under strict-...
petebacondarwin
authored
Sep 24, 2014
25
angular.module(
'
disableNgAnimate
'
, []).run([
'
$animate
'
,
function
(
$animate
) {
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
26
$animate.enabled(
false
);
2730007
chore(protractor): annotate $animate to allow tests to run under strict-...
petebacondarwin
authored
Sep 24, 2014
27
}]);
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
28
};
29
30
browser.addMockModule(
'
disableNgAnimate
'
, disableNgAnimate);
31
32
require
(
'
jasmine-reporters
'
);
33
jasmine.getEnv().addReporter(
2240c11
chore(tests): implement e2e test harness outside of docs app
caitp
authored
Oct 15, 2014
34
new
jasmine.JUnitXmlReporter
(
'
test_out/docs-e2e-
'
+
exports
.config.capabilities.browserName
+
'
-
'
,
true
,
true
));
0e85ca9
chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr
authored
Jan 31, 2014
35
},
36
37
jasmineNodeOpts
:
{
38
defaultTimeoutInterval
:
30000
,
39
showColors
:
false
40
}
41
};
Something went wrong with that request. Please try again.