Skip to content

Commit f2ff256

Browse files
author
Marius Conjeaud
committed
Remove debugging test skips
1 parent c0a030b commit f2ff256

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cypress/e2e/render/array.cy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('Testing array rendering', () => {
8585
cy.get(`${CARD_SELECTOR} .MuiCardHeader-root`).find('input').should('have.value', 'initial, list');
8686
});
8787

88-
it.skip('creates a table that contains int arrays', () => {
88+
it('creates a table that contains int arrays', () => {
8989
cy.checkInitialState();
9090
createReportOfType('Table', intArrayCypherQuery, true, true);
9191

@@ -102,7 +102,7 @@ describe('Testing array rendering', () => {
102102
cy.get(`${CARD_SELECTOR} .MuiDataGrid-cell:eq(1)`).should('have.text', '3, 4');
103103
});
104104

105-
it.skip('creates a table that contains nodes and rels', () => {
105+
it('creates a table that contains nodes and rels', () => {
106106
cy.checkInitialState();
107107
createReportOfType('Table', pathArrayCypherQuery, true, true);
108108

@@ -115,7 +115,7 @@ describe('Testing array rendering', () => {
115115
cy.get(`${CARD_SELECTOR} .MuiDataGrid-cell:eq(0) .MuiChip-root`).should('have.text', 'ACTED_IN');
116116
});
117117

118-
it.skip('creates a single value report which is an array', () => {
118+
it('creates a single value report which is an array', () => {
119119
cy.checkInitialState();
120120
createReportOfType('Single Value', stringArrayCypherQuery, true, true);
121121
cy.get(CARD_SELECTOR).should('have.text', 'initial, list');

0 commit comments

Comments
 (0)