mirror of
https://github.com/mozilla/send.git
synced 2026-01-14 07:57:53 -05:00
17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
/* global browser */
|
|
const assert = require('assert');
|
|
const HomePage = require('./pages/desktop/home_page');
|
|
|
|
describe('Firefox Send progress page', function() {
|
|
const homePage = new HomePage();
|
|
|
|
beforeEach(function() {
|
|
homePage.open();
|
|
});
|
|
|
|
it('should show progress when a file is uploading', function() {
|
|
homePage.uploadFile('', __filename);
|
|
assert.ok($(homePage.progress).waitForExist(1000));
|
|
});
|
|
});
|