-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up integration tests and add listeners for backend calls (#11847)
- Close enso-org/cloud-v2#1604 - Add ability to track backend calls - Remove inconsistent integration test code - Add skeleton classes for settings pages # Important Notes None
- Loading branch information
1 parent
2964457
commit b83c5a1
Showing
63 changed files
with
2,479 additions
and
2,357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
app/gui/integration-test/dashboard/actions/BaseSettingsTabActions.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** @file Actions for the "user" tab of the "settings" page. */ | ||
import { goToPageActions, type GoToPageActions } from './goToPageActions' | ||
import PageActions from './PageActions' | ||
|
||
/** Actions common to all settings pages. */ | ||
export default class BaseSettingsTabActions<Context> extends PageActions<Context> { | ||
/** Actions for navigating to another page. */ | ||
get goToPage(): Omit<GoToPageActions<Context>, 'settings'> { | ||
return goToPageActions(this.step.bind(this)) | ||
} | ||
} |
Oops, something went wrong.