Skip to content

Commit a4bc89f

Browse files
run only creation
1 parent e1042aa commit a4bc89f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cypress/integration/free-gutenberg.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('Test Free - gutenberg', function() {
1313
cy.create_available_charts(Cypress.env('chart_types').free);
1414
});
1515

16-
it('Verify insertion of charts', function() {
16+
it.skip('Verify insertion of charts', function() {
1717
cy.visit('/post-new.php');
1818

1919
// get rid of that irritating popup
@@ -45,8 +45,10 @@ describe('Test Free - gutenberg', function() {
4545
for(var i = page * 6; i < ( ( (page * 6) + 6 ) > Cypress.env('chart_types').free ? Cypress.env('chart_types').free : ( (page * 6) + 6 ) ); i++){
4646
charts.push(i + 1);
4747
}
48+
console.log(page + " added " + charts);
4849
}).then( () => {
4950
cy.wrap(charts).each((num, i, array) => {
51+
console.log("loading " + num + " on " + page);
5052
if(page > 0){
5153
// click load more for every page except the first.
5254
cy.get('.visualizer-settings').then( ($div) => {

0 commit comments

Comments
 (0)