Skip to content

Commit 3bf2317

Browse files
e2e - remove debug and unskip test
1 parent 349b2ab commit 3bf2317

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

tests/e2e/pageObjects/browser-page.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ export class BrowserPage {
232232
await t.click(this.keyTTLInput);
233233
await t.typeText(this.keyTTLInput, TTL);
234234
}
235-
await t.debug();
236235
await t.click(this.addKeyButton);
237236
}
238237

tests/e2e/tests/regression/browser/add-keys.e2e.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ fixture `Different JSON types creation`
2424
await cliPage.sendCommandInCli(commandString);
2525
await deleteDatabase(ossStandaloneConfig.databaseName);
2626
});
27-
// skipped due the issue https://redislabs.atlassian.net/browse/RI-2966
28-
test.skip('Verify that user can create different types(string, number, null, array, boolean) of JSON', async t => {
27+
test('Verify that user can create different types(string, number, null, array, boolean) of JSON', async t => {
2928
for (let i = 0; i < jsonKeys.length; i++) {
3029
await browserPage.addJsonKey(jsonKeys[i][0], jsonKeys[i][1]);
3130
await t.click(browserPage.toastCloseButton);

0 commit comments

Comments
 (0)