aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts')
-rw-r--r--server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts b/server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts
index 714749f88e7..4b2b94a155e 100644
--- a/server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts
+++ b/server/sonar-web/src/main/js/helpers/__tests__/almIntegrations-test.ts
@@ -37,19 +37,19 @@ it('#getAlmMembersUrl', () => {
});
it('#isBitbucket', () => {
- expect(isBitbucket('bitbucket')).toBeTruthy();
- expect(isBitbucket('bitbucketcloud')).toBeTruthy();
- expect(isBitbucket('github')).toBeFalsy();
+ expect(isBitbucket('bitbucket')).toBe(true);
+ expect(isBitbucket('bitbucketcloud')).toBe(true);
+ expect(isBitbucket('github')).toBe(false);
});
it('#isGithub', () => {
- expect(isGithub('github')).toBeTruthy();
- expect(isGithub('bitbucket')).toBeFalsy();
+ expect(isGithub('github')).toBe(true);
+ expect(isGithub('bitbucket')).toBe(false);
});
it('#isVSTS', () => {
- expect(isVSTS('microsoft')).toBeTruthy();
- expect(isVSTS('github')).toBeFalsy();
+ expect(isVSTS('microsoft')).toBe(true);
+ expect(isVSTS('github')).toBe(false);
});
it('#sanitizeAlmId', () => {