Skip to content

Commit 4b7376f

Browse files
committed
fixes
1 parent 33733f5 commit 4b7376f

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@ jobs:
369369
- attach_workspace:
370370
at: .
371371
- run: sudo apt-get install net-tools
372-
- run: sudo apt install fluxbox
373372
- run:
374373
name: .AppImage tests
375374
command: |

tests/e2e/desktop.runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import testcafe from 'testcafe';
1313
.src((process.env.TEST_FILES || 'tests/electron/**/*.e2e.ts').split('\n'))
1414
.browsers(['electron'])
1515
.screenshots({
16-
path: 'report/screenshots/',
16+
path: './report/screenshots/',
1717
takeOnFails: true,
1818
pathPattern: '${USERAGENT}/${DATE}_${TIME}/${FIXTURE}_${TEST}_${FILE_INDEX}.png',
1919
})

tests/e2e/tests/web/critical-path/browser/bulk-upload.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ const databaseAPIRequests = new DatabaseAPIRequests();
1414
const dbParameters = { host: ossStandaloneRedisearch.host, port: ossStandaloneRedisearch.port };
1515
const filesToUpload = ['bulkUplAllKeyTypes.txt', 'bigKeysData.rtf'];
1616
const filePathes = {
17-
allKeysFile: path.join('..', '..', '..', 'test-data', 'bulk-upload', filesToUpload[0]),
18-
bigDataFile: path.join('..', '..', '..', 'test-data', 'bulk-upload', filesToUpload[1])
17+
allKeysFile: path.join('..', '..', '..', '..', 'test-data', 'bulk-upload', filesToUpload[0]),
18+
bigDataFile: path.join('..', '..', '..', '..', 'test-data', 'bulk-upload', filesToUpload[1])
1919
};
2020
const keyNames = ['hashkey1', 'listkey1', 'setkey1', 'zsetkey1', 'stringkey1', 'jsonkey1', 'streamkey1', 'graphkey1', 'tskey1'];
2121
const verifyCompletedResultText = async(resultsText: string[]): Promise<void> => {

tests/e2e/tests/web/critical-path/database/import-databases.e2e.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ const fileNames = {
2222
racompFullSSHJson: 'racompFullSSH.json'
2323
};
2424
const filePathes = {
25-
ardmValidPath: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.ardmValidAno),
26-
racompassInvalidJsonPath: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.racompassInvalidJson),
27-
rdmPath: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.rdmFullJson),
28-
rdmCertsPath: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.rdmCertsJson),
29-
racompassValidJson: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.racompassValidJson),
30-
racompassSshPath: path.join('..', '..', '..', 'test-data', 'import-databases', fileNames.racompFullSSHJson)
25+
ardmValidPath: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.ardmValidAno),
26+
racompassInvalidJsonPath: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.racompassInvalidJson),
27+
rdmPath: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.rdmFullJson),
28+
rdmCertsPath: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.rdmCertsJson),
29+
racompassValidJson: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.racompassValidJson),
30+
racompassSshPath: path.join('..', '..', '..', '..', 'test-data', 'import-databases', fileNames.racompFullSSHJson)
3131
};
3232

3333
const rdmListOfDB = databasesActions.parseDbJsonByPath(path.join('test-data', 'import-databases', fileNames.rdmFullJson));

tests/e2e/tests/web/critical-path/triggers-and-functions/libraries.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const triggersAndFunctionsFunctionsPage = new TriggersAndFunctionsFunctionsPage(
2323
const libraryName = Common.generateWord(5);
2424

2525
const filePathes = {
26-
upload: path.join('..', '..', '..', 'test-data', 'triggers-and-functions', 'library.txt'),
27-
invoke: path.join('..', '..', '..', 'test-data', 'triggers-and-functions', 'invoke_function.txt')
26+
upload: path.join('..', '..', '..', '..', 'test-data', 'triggers-and-functions', 'library.txt'),
27+
invoke: path.join('..', '..', '..', '..', 'test-data', 'triggers-and-functions', 'invoke_function.txt')
2828
};
2929

3030
fixture `Triggers and Functions`

tests/e2e/tests/web/regression/browser/upload-json-key.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const browserPage = new BrowserPage();
1010
const databaseHelper = new DatabaseHelper();
1111
const databaseAPIRequests = new DatabaseAPIRequests();
1212

13-
const filePath = path.join('..', '..', '..', 'test-data', 'upload-json', 'sample.json');
13+
const filePath = path.join('..', '..', '..', '..', 'test-data', 'upload-json', 'sample.json');
1414
const jsonValues = ['Live JSON generator', '3.1', '"2014-06-25T00:00:00.000Z"', 'true'];
1515
const keyName = Common.generateWord(10);
1616

tests/e2e/tests/web/regression/triggers-and-functions/libraries.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ const streamKeyName = Common.generateWord(5);
2828
const libNameFromFile = 'lib';
2929

3030
const filePathes = {
31-
upload: path.join('..', '..', '..', 'test-data', 'triggers-and-functions', 'library.txt'),
32-
invoke: path.join('..', '..', '..', 'test-data', 'triggers-and-functions', 'invoke_function.txt')
31+
upload: path.join('..', '..', '..', '..', 'test-data', 'triggers-and-functions', 'library.txt'),
32+
invoke: path.join('..', '..', '..', '..', 'test-data', 'triggers-and-functions', 'invoke_function.txt')
3333
};
3434

3535
const LIBRARIES_LIST = [

0 commit comments

Comments
 (0)