Skip to content

Commit 0ec2c2a

Browse files
committed
restore accidentally-deleted files
1 parent a89342f commit 0ec2c2a

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

Diff for: package.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "angularjs.org",
3+
"version": "0.0.0",
4+
"devDependencies": {
5+
"http-server": "*",
6+
"protractor": "~0.20.1",
7+
"selenium-webdriver": "~2.40.0"
8+
}
9+
}

Diff for: protractorConf.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
exports.config = {
2+
seleniumServerJar: './node_modules/protractor/selenium/selenium-server-standalone-2.40.0.jar',
3+
seleniumArgs: [],
4+
baseUrl: process.env.ANGULAR_HOME_HOST || 'http://angularjs.org',
5+
capabilities: {
6+
'browserName': 'chrome'
7+
},
8+
specs: [
9+
'test/angularjs.org.spec.js',
10+
],
11+
jasmineNodeOpts: {
12+
onComplete: null,
13+
isVerbose: true,
14+
showColors: false,
15+
includeStackTrace: true,
16+
defaultTimeoutInterval: 10000
17+
}
18+
};

0 commit comments

Comments
 (0)