mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
parent
18c23c17d9
commit
e100e1f5c9
1 changed files with 10 additions and 0 deletions
|
@ -74,6 +74,16 @@ bdd.describe('visualize app', function describeIndexTests() {
|
|||
});
|
||||
});
|
||||
|
||||
bdd.it('should save and load with non-ascii characters', async function () {
|
||||
const vizNamewithSpecialChars = `${vizName1} with Umlaut ä`;
|
||||
const message = await PageObjects.visualize.saveVisualization(vizNamewithSpecialChars);
|
||||
|
||||
PageObjects.common.debug(`Saved viz message with umlaut = ${message}`);
|
||||
expect(message).to.be(`Visualization Editor: Saved Visualization "${vizNamewithSpecialChars}"`);
|
||||
|
||||
await PageObjects.visualize.waitForToastMessageGone();
|
||||
});
|
||||
|
||||
bdd.it('should save and load', function () {
|
||||
return PageObjects.visualize.saveVisualization(vizName1)
|
||||
.then(function (message) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue