Skip to content

Commit

Permalink
Bump version (alpha) (DevExpress#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMoskovkin authored and kirovboris committed Dec 18, 2019
1 parent 1a1de87 commit e545798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "testcafe",
"description": "Automated browser testing for the modern web development stack.",
"license": "MIT",
"version": "0.17.0-alpha2",
"version": "0.17.0-alpha3",
"author": {
"name": "Developer Express Inc.",
"url": "https://www.devexpress.com/"
Expand Down
Expand Up @@ -14,15 +14,15 @@ fixture `Concurrent`
});

test('Long test', async t => {
timelines[t.ctx.userAgent].push('long started');
timelines[t.ctx.userAgent].push('test started');

await t.wait(5000);

timelines[t.ctx.userAgent].push('long finished');
});

test('Short test', async t => {
timelines[t.ctx.userAgent].push('short started');
timelines[t.ctx.userAgent].push('test started');

await t.wait(1000);

Expand All @@ -35,5 +35,5 @@ test('Results', async t => {
await t.expect(Object.keys(timelines).length).gt(1);

for (const timeline of Object.values(timelines))
await t.expect(timeline).eql(['long started', 'short started', 'short finished', 'long finished']);
await t.expect(timeline).eql(['test started', 'test started', 'short finished', 'long finished']);
});

0 comments on commit e545798

Please sign in to comment.