|
1 | 1 | import * as path from 'path';
|
2 | 2 | import { rte } from '../../../helpers/constants';
|
3 | 3 | import { BrowserPage, MyRedisDatabasePage } from '../../../pageObjects';
|
4 |
| -import { commonUrl, ossStandaloneConfig } from '../../../helpers/conf'; |
| 4 | +import { commonUrl } from '../../../helpers/conf'; |
5 | 5 | import { DatabaseHelper } from '../../../helpers/database';
|
6 | 6 | import { DatabaseAPIRequests } from '../../../helpers/api/api-database';
|
7 | 7 | import { DatabasesActions } from '../../../common-actions/databases-actions';
|
@@ -84,7 +84,6 @@ fixture `Import databases`
|
84 | 84 | // Delete all existing connections
|
85 | 85 | await databaseAPIRequests.deleteAllDatabasesApi();
|
86 | 86 | await databaseHelper.acceptLicenseTerms();
|
87 |
| - await databaseAPIRequests.addNewStandaloneDatabaseApi(ossStandaloneConfig); |
88 | 87 | await myRedisDatabasePage.reloadPage();
|
89 | 88 | })
|
90 | 89 | .afterEach(async() => {
|
@@ -126,7 +125,7 @@ test('Connection import modal window', async t => {
|
126 | 125 | await t.click(myRedisDatabasePage.removeImportedFileBtn);
|
127 | 126 | await t.expect(myRedisDatabasePage.importDbDialog.textContent).contains(defaultText, 'File not removed from import input');
|
128 | 127 | });
|
129 |
| -test('Connection import from JSON', async t => { |
| 128 | +test.only('Connection import from JSON', async t => { |
130 | 129 | // Verify that user can import database with mandatory/optional fields
|
131 | 130 | await databasesActions.importDatabase(rdmData);
|
132 | 131 |
|
|
0 commit comments