forked from DevExpress/testcafe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DevExpress#16 from inikulin/master
Restructure project. Move assets to the appropriate dirs.
- Loading branch information
Showing
20 changed files
with
80 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: node_js | ||
node_js: | ||
- iojs | ||
- 0.10 | ||
- 0.12 | ||
|
||
notifications: | ||
email: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# testcafe-phoenix | ||
|
||
[![Build Status](https://travis-ci.org/superroma/testcafe-phoenix.svg)](https://travis-ci.org/superroma/testcafe-phoenix) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
{ | ||
"dependencies": { | ||
"babel-runtime": "^5.6.15", | ||
"callsite": "^1.0.0", | ||
"mustache": "^2.1.2", | ||
"promise": "^7.0.3", | ||
"useragent": "^2.1.7" | ||
}, | ||
"devDependencies": { | ||
"babel-eslint": "^3.1.18", | ||
"del": "^1.2.0", | ||
"gulp": "^3.9.0", | ||
"gulp-babel": "^5.1.0", | ||
"gulp-eslint": "^0.15.0", | ||
"gulp-mocha": "^2.1.2" | ||
"gulp-less": "^3.0.3", | ||
"gulp-mocha": "^2.1.2", | ||
"merge-stream": "^0.1.8" | ||
}, | ||
"dependencies": { | ||
"babel-runtime": "^5.6.15", | ||
"promise": "^7.0.3" | ||
"scripts": { | ||
"test": "gulp test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "../../.eslintrc", | ||
"env": { | ||
"mocha": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
//var TestCafe = require('../../lib/'); | ||
|
||
// Test ready event | ||
// Test heartbeat timeout | ||
// Test idle page rendering | ||
// Test status request | ||
|
||
/* | ||
describe('Browser connection', function () { | ||
var testCafe = null; | ||
before(function () { | ||
testCafe = new TestCafe(1335, 1336); | ||
}); | ||
after(function () { | ||
testCafe.close(); | ||
}); | ||
}); | ||
*/ |