2021-04-02 23:11:27 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* This is a minimal test to make sure documents can be created, edited, and
|
|
|
|
* reopened. Grist has a very extensive test set that has not yet been ported
|
|
|
|
* to the grist-core.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { assert, driver } from 'mocha-webdriver';
|
|
|
|
import { server, setupTestSuite } from 'test/nbrowser/testUtils';
|
|
|
|
import * as gu from 'test/nbrowser/gristUtils';
|
|
|
|
|
|
|
|
async function openMainPage() {
|
|
|
|
await driver.get(`${server.getHost()}`);
|
|
|
|
while (true) { // eslint-disable-line no-constant-condition
|
|
|
|
try {
|
|
|
|
if (await driver.findContent('button', /Create Empty Document/).isPresent()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// don't worry about transients.
|
|
|
|
}
|
|
|
|
await driver.sleep(10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("Smoke", function() {
|
|
|
|
this.timeout(20000);
|
|
|
|
setupTestSuite();
|
|
|
|
|
|
|
|
it('can create, edit, and reopen a document', async function() {
|
|
|
|
this.timeout(20000);
|
|
|
|
await openMainPage();
|
|
|
|
await driver.findContent('button', /Create Empty Document/).click();
|
|
|
|
await gu.waitForDocToLoad(20000);
|
2021-07-30 15:16:33 +00:00
|
|
|
await gu.dismissWelcomeTourIfNeeded();
|
2021-04-02 23:11:27 +00:00
|
|
|
await gu.getCell('A', 1).click();
|
|
|
|
await gu.enterCell('123');
|
|
|
|
await driver.navigate().refresh();
|
|
|
|
await gu.waitForDocToLoad();
|
|
|
|
assert.equal(await gu.getCell('A', 1).getText(), '123');
|
|
|
|
});
|
|
|
|
});
|