Bumped waitFor timeouts in gh-uploader tests

no issue

- Travis was randomly failing here
This commit is contained in:
Kevin Ansfield 2019-05-13 09:59:05 +01:00
parent 320d228efd
commit cf4246dd5e

View File

@ -190,7 +190,7 @@ describe('Integration: Component: gh-uploader', function () {
this.set('files', [createFile(), createFile()]);
await waitFor('.is-uploading-test', {timeout: 100});
await waitFor('.is-uploading-test', {timeout: 150});
await settled();
expect(find('.is-uploading-test')).to.not.exist;
@ -206,7 +206,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-bar]', {timeout: 150});
let progressBar = find('[data-test-progress-bar]');
await waitUntil(() => {
let width = parseInt(progressBar.style.width);