Skip to content

Commit 6a88c61

Browse files
author
Artem
committed
confirm iframe fix
1 parent 1819510 commit 6a88c61

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ jobs:
383383
description: Number of threads to run tests
384384
type: integer
385385
default: 1
386-
parallelism: << parameters.parallelism >>
386+
# parallelism: << parameters.parallelism >>
387+
parallelism: 1
387388
steps:
388389
- checkout
389390
- when:

tests/e2e/tests/critical-path/workbench/default-scripts-area.e2e.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const chance = new Chance();
1212
let indexName = chance.word({ length: 5 });
1313
let keyName = chance.word({ length: 5 });
1414

15-
fixture `Default scripts area at Workbench`
15+
fixture.only `Default scripts area at Workbench`
1616
.meta({type: 'critical_path'})
1717
.page(commonUrl)
1818
.beforeEach(async t => {
@@ -27,7 +27,7 @@ fixture `Default scripts area at Workbench`
2727
await deleteStandaloneDatabaseApi(ossStandaloneRedisearch);
2828
});
2929
test
30-
.meta({ env: env.desktop, rte: rte.standalone })('Verify that user can edit and run automatically added "FT._LIST" and "FT.INFO {index}" scripts in Workbench and see the results', async t => {
30+
.meta({ rte: rte.standalone })('Verify that user can edit and run automatically added "FT._LIST" and "FT.INFO {index}" scripts in Workbench and see the results', async t => {
3131
indexName = chance.word({ length: 5 });
3232
keyName = chance.word({ length: 5 });
3333
const commandsForSend = [
@@ -55,7 +55,7 @@ test
5555
await t.expect(workbenchPage.queryColumns.textContent).contains('name', 'The result of the FT.INFO command');
5656
});
5757
test
58-
.meta({ env: env.desktop, rte: rte.standalone })('Verify that user can edit and run automatically added "Search" script in Workbench and see the results', async t => {
58+
.meta({ rte: rte.standalone })('Verify that user can edit and run automatically added "Search" script in Workbench and see the results', async t => {
5959
indexName = chance.word({ length: 5 });
6060
keyName = chance.word({ length: 5 });
6161
const commandsForSend = [
@@ -80,7 +80,7 @@ test
8080
await t.expect(name.exists).ok('The added key name field is in the Search result');
8181
});
8282
test
83-
.meta({ env: env.desktop, rte: rte.standalone })('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results', async t => {
83+
.meta({ rte: rte.standalone })('Verify that user can edit and run automatically added "Aggregate" script in Workbench and see the results', async t => {
8484
indexName = chance.word({ length: 5 });
8585
const aggregationResultField = 'max_price';
8686
const commandsForSend = [

0 commit comments

Comments
 (0)