Skip to content

Commit 0ca3ebd

Browse files
committed
test run with skipped
1 parent 9c37388 commit 0ca3ebd

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

tests/e2e/tests/critical-path/database/modules.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fixture `Database modules`
2424
// Delete database
2525
await deleteStandaloneDatabaseApi(ossStandaloneRedisearch);
2626
});
27-
test
27+
test.skip
2828
.meta({ rte: rte.standalone, env: env.web })('Verify that user can see DB modules on DB list page for Standalone DB', async t => {
2929
// Check module column on DB list page
3030
await t.expect(myRedisDatabasePage.moduleColumn.exists).ok('Module column not found');
@@ -48,7 +48,7 @@ test
4848
//Verify that user can hover over the module icons and see tooltip with version.
4949
await myRedisDatabasePage.checkModulesInTooltip(moduleNameList);
5050
});
51-
test
51+
test.skip
5252
.meta({ rte: rte.standalone })('Verify that user can see full module list in the Edit mode', async t => {
5353
// Verify that module column is displayed
5454
await t.expect(myRedisDatabasePage.moduleColumn.visible).ok('Module column not found');
@@ -59,7 +59,7 @@ test
5959
// Verify modules in Edit mode
6060
await myRedisDatabasePage.checkModulesOnPage(moduleList);
6161
});
62-
test
62+
test.skip
6363
.meta({ rte: rte.standalone })('Verify that user can see icons in DB header for RediSearch, RedisGraph, RedisJSON, RedisBloom, RedisTimeSeries, RedisGears, RedisAI default modules', async t => {
6464
// Connect to DB
6565
await myRedisDatabasePage.clickOnDBByName(ossStandaloneRedisearch.databaseName);

tests/e2e/tsconfig.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2020",
4+
"module": "commonjs",
5+
"esModuleInterop": true,
6+
"forceConsistentCasingInFileNames": true,
7+
"strict": true,
8+
"skipLibCheck": true,
9+
"sourceMap": true
10+
},
11+
"exclude": [
12+
"./node_modules",
13+
"**/node_modules"
14+
]
15+
}

0 commit comments

Comments
 (0)