mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
Fix screenshots Data Table and Tile Map.
This commit is contained in:
parent
21e996bd88
commit
127e8e67dd
1 changed files with 8 additions and 12 deletions
|
@ -86,15 +86,11 @@ define(function (require) {
|
||||||
});
|
});
|
||||||
|
|
||||||
bdd.describe('vertical bar chart', function indexPatternCreation() {
|
bdd.describe('vertical bar chart', function indexPatternCreation() {
|
||||||
|
|
||||||
|
|
||||||
bdd.it('should save and load, take screenshot', function pageHeader() {
|
|
||||||
|
|
||||||
var testSubName = 'VerticalBarChart';
|
var testSubName = 'VerticalBarChart';
|
||||||
common.debug('Start of test' + testSubName + 'Visualization');
|
|
||||||
var vizName1 = 'Visualization ' + testSubName;
|
var vizName1 = 'Visualization ' + testSubName;
|
||||||
// var remote = this.remote;
|
|
||||||
|
|
||||||
|
|
||||||
|
bdd.it('should save and load', function pageHeader() {
|
||||||
return visualizePage.saveVisualization(vizName1)
|
return visualizePage.saveVisualization(vizName1)
|
||||||
.then(function (message) {
|
.then(function (message) {
|
||||||
common.debug('Saved viz message = ' + message);
|
common.debug('Saved viz message = ' + message);
|
||||||
|
@ -112,15 +108,11 @@ define(function (require) {
|
||||||
.then(function waitForVisualization() {
|
.then(function waitForVisualization() {
|
||||||
return visualizePage.waitForVisualization();
|
return visualizePage.waitForVisualization();
|
||||||
})
|
})
|
||||||
.then(function takeScreenshot() {
|
|
||||||
common.debug('Take screenshot');
|
|
||||||
common.saveScreenshot('./screenshot-' + testSubName + '.png');
|
|
||||||
})
|
|
||||||
.catch(common.handleError(this));
|
.catch(common.handleError(this));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
bdd.it('should show correct chart', function pageHeader() {
|
bdd.it('should show correct chart, take screenshot', function pageHeader() {
|
||||||
|
|
||||||
var expectedChartValues = [37, 202, 740, 1437, 1371, 751, 188, 31, 42, 202, 683,
|
var expectedChartValues = [37, 202, 740, 1437, 1371, 751, 188, 31, 42, 202, 683,
|
||||||
1361, 1415, 707, 177, 27, 32, 175, 707, 1408, 1355, 726, 201, 29
|
1361, 1415, 707, 177, 27, 32, 175, 707, 1408, 1355, 726, 201, 29
|
||||||
|
@ -138,6 +130,10 @@ define(function (require) {
|
||||||
common.debug('data.length=' + data.length);
|
common.debug('data.length=' + data.length);
|
||||||
expect(data).to.eql(expectedChartValues);
|
expect(data).to.eql(expectedChartValues);
|
||||||
})
|
})
|
||||||
|
.then(function takeScreenshot() {
|
||||||
|
common.debug('Take screenshot');
|
||||||
|
common.saveScreenshot('./screenshot-' + testSubName + '.png');
|
||||||
|
})
|
||||||
.catch(common.handleError(this));
|
.catch(common.handleError(this));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue