Increase timeout for gh-uploader progress bar assertion

no issue
- hopeful fix for randomly failing Travis
This commit is contained in:
Kevin Ansfield 2019-04-29 16:56:19 +02:00
parent 484b8cf0d4
commit d7771059d0

View File

@ -207,7 +207,7 @@ describe('Integration: Component: gh-uploader', function () {
this.set('files', [createFile(), createFile()]);
await waitFor('[data-test-progress-bar]', {timeout: 100});
await waitFor('[data-test-progress-width^="5"]', {timeout: 100});
await waitFor('[data-test-progress-width^="5"]', {timeout: 150});
await settled();
let finalProgressWidth = parseInt(find('[data-test-progress-bar]').style.width);