Commit 74af5aab authored by Ward Bell's avatar Ward Bell

chore: update to beta.16

parent a44287fd
<a name="0.1.16"></a>
# 0.1.16 (2016-04-26)
* update packages
* Angular 2 beta 16
* a2-in-memory-web-api 0.1.6
* protractor 3.3.0
* typings 0.8.1
* zone.js 0.6.12
* added favicon.ico
<a name="0.1.15"></a>
# 0.1.15 (2016-04-13)
* Add testing support
......
......@@ -8,7 +8,7 @@
// 2. Make sure the test server (e.g., http-server: localhost:8080) is running.
// 3. ./node_modules/.bin/protractor protractor.config.js
//
// To do all steps, try: `npm run e2e`
// To do all steps, try: `npm run e2e`
var fs = require('fs');
var path = require('canonical-path');
......@@ -69,9 +69,12 @@ exports.config = {
// Hack - because of bug with protractor send keys
function sendKeys(element, str) {
return str.split('').reduce(function (promise, char) {
return promise.resolve(element.sendKeys(char));
return promise.then(function () {
return element.sendKeys(char);
});
}, element.getAttribute('value'));
}
// better to create a resolved promise here but ... don't know how with protractor;
}
// Custom reporter
function Reporter(options) {
......
{
"ambientDependencies": {
"es6-shim": "github:DefinitelyTyped/DefinitelyTyped/es6-shim/es6-shim.d.ts#7de6c3dd94feaeb21f20054b9f30d5dabc5efabd",
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#7de6c3dd94feaeb21f20054b9f30d5dabc5efabd"
"jasmine": "github:DefinitelyTyped/DefinitelyTyped/jasmine/jasmine.d.ts#5c182b9af717f73146399c2485f70f1e2ac0ff2b"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment