[PM-43141] Introduce new import source component - #23031
Draft
harr1424 wants to merge 1 commit into
Draft
Conversation
| }); | ||
|
|
||
| it("allows navigation when the flag is off", async () => { | ||
| const result = await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| }); | ||
|
|
||
| it("checks the ImportUpgrade flag specifically", async () => { | ||
| await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| it("redirects to the vault tab and opens the import picker's own extension tab when the flag is on", async () => { | ||
| getFeatureFlag.mockResolvedValue(true); | ||
|
|
||
| const result = await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| getFeatureFlag.mockResolvedValue(true); | ||
| getAuthStatus.mockResolvedValue(status); | ||
|
|
||
| const result = await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| }); | ||
|
|
||
| it("allows navigation when the flag is on", async () => { | ||
| const result = await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| }); | ||
|
|
||
| it("checks the ImportUpgrade flag specifically", async () => { | ||
| await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
| it("redirects to the vault tab when the flag is off", async () => { | ||
| getFeatureFlag.mockResolvedValue(false); | ||
|
|
||
| const result = await TestBed.runInInjectionContext(() => guard(mockRoute, mockState)); |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎟️ Tracking
https://bitwarden.atlassian.net/browse/PM-43141
📔 Objective
This PR introduces all un-owned and Tool Team owned files to implement the new import source component, with minimal review required by UIF team.
This should not be merged until #22953 has merged into
main.📸 Screenshots