Skip to content

Commit fe443bd

Browse files
#RI-4295 - fix pr comments
1 parent 6624142 commit fe443bd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/e2e/tests/critical-path/browser/keylist-actions.e2e.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ import { Common } from '../../../helpers/common';
1111
const browserPage = new BrowserPage();
1212
const common = new Common();
1313

14-
const keyName = common.generateWord(10);
14+
let keyName: string;
15+
1516
fixture `Actions with Key List on Browser page`
1617
.meta({type: 'critical_path', rte: rte.standalone})
1718
.page(commonUrl)
1819
.beforeEach(async() => {
1920
await acceptLicenseTermsAndAddDatabaseApi(ossStandaloneConfig, ossStandaloneConfig.databaseName);
21+
keyName = common.generateWord(10);
2022
})
2123
.afterEach(async() => {
2224
// Delete database
@@ -29,7 +31,7 @@ test('Verify that user can delete key in List mode', async t => {
2931
await t.expect(await browserPage.isKeyIsDisplayedInTheList(keyName)).notOk('The Key wasn\'t deleted');
3032
});
3133

32-
test.only('Verify that user can delete key in Tree view', async t => {
34+
test('Verify that user can delete key in Tree view', async t => {
3335
// Add new key
3436
await browserPage.addStringKey(keyName);
3537
await t.click(browserPage.treeViewButton);

0 commit comments

Comments
 (0)