Skip to content

Commit 974eef5

Browse files
committed
Use Bridge NPM Package
1 parent 9a8da2b commit 974eef5

86 files changed

Lines changed: 1391 additions & 1089 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cypress.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineConfig({
1010
viewportWidth: 1280,
1111
viewportHeight: 720,
1212
env: {
13-
serverBaseUrl: 'http://we.dev.localhost:5210/api/1',
13+
serverBaseUrl: 'http://we.dev.localhost:5210/api/1.0',
1414
fusionAuthBaseUrl: 'http://localhost:9011',
1515
},
1616
setupNodeEvents(on) {

cypress/e2e/Auth.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import { getTestSelectorByModule } from 'support/helpers';
44
import {
55
interceptFetchClientFailedRequest,

cypress/e2e/Branch/BranchCatalog.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import {
44
clearInputField,
55
clickActionButton,

cypress/e2e/Branch/BranchManagement.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import {
44
clearBranchDetailsForm,
55
fillBranchDetailsForm,

cypress/e2e/Branch/BranchView.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import { getLinearLoader, getTestSelectorByModule, selectAction, verifyInputFields, verifyTextFields } from 'support/helpers';
44
import {
55
interceptEditBranchRequest,

cypress/e2e/Company/CompanyManagement.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import {
44
clearInputField,
55
clickActionButton,

cypress/e2e/Company/CompanySettings.cy.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import { COMPANY_SETTINGS_KEY, ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { COMPANY_SETTINGS_KEY } from 'shared/constants/configs';
2+
import { ROUTES } from 'shared/constants/routes';
3+
import { Module, SubModule } from 'shared/types/module';
34
import {
45
clickActionButton,
56
clickFlowsIcon,

cypress/e2e/Department/DepartmentCatalog.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import {
44
clearInputField,
55
clickActionButton,

cypress/e2e/Department/DepartmentManagement.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import {
44
getLinearLoader,
55
getLoadingButtonLoadingIcon,

cypress/e2e/Department/DepartmentView.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { ROUTES } from 'shared/constants';
2-
import { Module, SubModule } from 'shared/types';
1+
import { ROUTES } from 'shared/constants/routes';
2+
import { Module, SubModule } from 'shared/types/module';
33
import { getLinearLoader, getTestSelectorByModule, selectAction, verifyInputFields, verifyTextFields } from 'support/helpers';
44
import {
55
interceptFetchBranchesRequest,

0 commit comments

Comments
 (0)