Skip to content
Sign up
Sign in
This repository
Explore
Features
Enterprise
Blog
Watch
3,358
Star
35,302
Fork
14,303
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-shared-conf.js
Newer
Older
100644
33 lines (24 sloc)
0.797 kb
Raw
Normal view
History
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
1
'
use strict
'
;
2
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
3
exports
.config
=
{
4
allScriptsTimeout
:
11000
,
5
6
baseUrl
:
'
http://localhost:8000/build/docs/
'
,
7
8
framework
:
'
jasmine
'
,
9
10
onPrepare
:
function
() {
36831ec
refactor(jshint): reduce duplication & test all JS files
mzgol
authored
Jun 23, 2014
11
/* global angular: false, browser: false, jasmine: false */
12
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
13
// Disable animations so e2e tests run more quickly
14
var
disableNgAnimate
=
function
() {
2730007
chore(protractor): annotate $animate to allow tests to run under strict-...
petebacondarwin
authored
Sep 24, 2014
15
angular.module(
'
disableNgAnimate
'
, []).run([
'
$animate
'
,
function
(
$animate
) {
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
16
$animate.enabled(
false
);
2730007
chore(protractor): annotate $animate to allow tests to run under strict-...
petebacondarwin
authored
Sep 24, 2014
17
}]);
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
18
};
19
20
browser.addMockModule(
'
disableNgAnimate
'
, disableNgAnimate);
39c82f3
chore(travis): reorganize protractor configs to group by spec instead of...
juliemr
authored
Feb 19, 2014
21
22
// Store the name of the browser that's currently being used.
23
browser.getCapabilities().then(
function
(
caps
) {
24
browser.params.browser
=
caps.get(
'
browserName
'
);
25
});
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
26
},
27
28
jasmineNodeOpts
:
{
63e8952
chore(e2e): update protractor to 1.0.0-rc2 and add more logging
juliemr
authored
Jul 2, 2014
29
defaultTimeoutInterval
:
60000
,
30
showTiming
:
true
e645f7c
refactor(testing): split travis end to end tests into separate jobs for ...
juliemr
authored
Feb 6, 2014
31
}
32
};
Something went wrong with that request. Please try again.