Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Dec 12, 2016
1 parent 5cc6546 commit 942c5bf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
10 changes: 4 additions & 6 deletions _develop/wdio.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ exports.config = {
],
exclude: [],

reporters: ['spec'],

maxInstances: 10,
capabilities: [{
browserName: 'chrome'
// }, {
// browserName: 'firefox'
}],

sync: true,
Expand All @@ -25,10 +25,8 @@ exports.config = {
jasmineNodeOpts: {
defaultTimeoutInterval: 10000,
expectationResultHandler: function(passed, assertion) {
if (!passed) {
this.saveScreenshot('./wd-' + this.desiredCapabilities.browserName + '-error.png');
process.exit(1);
}
if (passed) return;
this.saveScreenshot('./wd-' + this.desiredCapabilities.browserName + '-error.png');
}
}
}
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,33 +40,34 @@
"quill-delta": "3.4.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "~0.26.0",
"eslint": "^3.11.1",
"css-loader": "~0.26.1",
"eslint": "^3.12.1",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-loader": "~0.4.4",
"http-proxy": "^1.15.2",
"http-proxy": "^1.16.2",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine": "^1.1.0",
"karma-sauce-launcher": "^1.1.0",
"lodash": "^4.17.2",
"style-loader": "~0.13.1",
"stylus": "~0.54.5",
"stylus-loader": "^2.4.0",
"ts-loader": "^1.3.0",
"typescript": "^2.0.10",
"wdio-jasmine-framework": "~0.2.16",
"webdriver-manager": "^10.2.8",
"webdriverio": "^4.4.0",
"webpack": "^1.13.3",
"ts-loader": "^1.3.2",
"typescript": "^2.1.4",
"wdio-jasmine-framework": "~0.2.17",
"wdio-spec-reporter": "~0.0.3",
"webdriver-manager": "^10.2.10",
"webdriverio": "^4.5.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion test/functional/epic.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var P1 = 'Call me Ishmael. Some years ago—never mind how long precisely-having
var P2 = 'There now is your insular city of the Manhattoes, belted round by wharves as Indian isles by coral reefs—commerce surrounds it with her surf. Right and left, the streets take you waterward. Its extreme downtown is the battery, where that noble mole is washed by waves, and cooled by breezes, which a few hours previous were out of sight of land. Look at the crowds of water-gazers there.'


describe('compose an epic', function(done) {
describe('compose an epic', function() {
it('load', function() {
browser.url('/standalone/full/');
expect(browser.getTitle()).toEqual('Full Editor - Quill');
Expand Down

0 comments on commit 942c5bf

Please sign in to comment.