(core) updates from grist-core

This commit is contained in:
Paul Fitzpatrick
2023-01-05 09:06:54 -05:00
10 changed files with 2242 additions and 3 deletions

View File

@@ -116,7 +116,7 @@ describe("Localization", function() {
await driver.navigate().refresh();
assert.equal(await driver.findWait('.test-welcome-title', 3000).getText(), 'TestMessage');
const gristConfig: any = await driver.executeScript("return window.gristConfig");
assert.deepEqual(gristConfig.supportedLngs, [...existingLocales, 'pl']);
assert.sameDeepMembers(gristConfig.supportedLngs, [...existingLocales, 'pl']);
});
});