-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52448 from truph01/fix/52260
fix: The shortcut CTRL + K does not work with a user as employee in a WS
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import type {OnyxValue} from 'react-native-onyx'; | ||
import {hasCompletedGuidedSetupFlowSelector} from '@libs/onboardingSelectors'; | ||
import CONST from '@src/CONST'; | ||
import type ONYXKEYS from '@src/ONYXKEYS'; | ||
|
||
describe('onboardingSelectors', () => { | ||
// Not all users have this NVP defined as we did not run a migration to backfill it for existing accounts, hence we need to make sure | ||
// the onboarding flow is only showed to the users with `hasCompletedGuidedSetupFlow` set to false | ||
describe('hasCompletedGuidedSetupFlowSelector', () => { | ||
// It might be the case that backend returns an empty array if the NVP is not defined on this particular account | ||
it('Should return true if onboarding NVP is an array', () => { | ||
const onboarding = [] as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(true); | ||
}); | ||
it('Should return true if onboarding NVP is an empty object', () => { | ||
const onboarding = {} as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(true); | ||
}); | ||
it('Should return true if onboarding NVP contains only signupQualifier', () => { | ||
const onboarding = {signupQualifier: CONST.ONBOARDING_SIGNUP_QUALIFIERS.VSB} as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(true); | ||
}); | ||
it('Should return true if onboarding NVP contains hasCompletedGuidedSetupFlow = true', () => { | ||
const onboarding = {hasCompletedGuidedSetupFlow: true} as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(true); | ||
}); | ||
it('Should return false if onboarding NVP contains hasCompletedGuidedSetupFlow = false', () => { | ||
const onboarding = {hasCompletedGuidedSetupFlow: false} as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(false); | ||
}); | ||
it('Should return true if onboarding NVP contains only selfTourViewed', () => { | ||
const onboarding = {selfTourViewed: true} as OnyxValue<typeof ONYXKEYS.NVP_ONBOARDING>; | ||
expect(hasCompletedGuidedSetupFlowSelector(onboarding)).toBe(true); | ||
}); | ||
}); | ||
}); |