mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-21 11:04:47 -05:00
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import {
|
|
Certification,
|
|
linkedInCredentialIds,
|
|
certToTitleMap,
|
|
certToIdMap,
|
|
certSlugTypeMap
|
|
} from './certification-settings';
|
|
|
|
describe('linkedInCredentialIds', () => {
|
|
it('should contain a value for all certifications', () => {
|
|
const allCertifications = Object.values(Certification).sort();
|
|
const linkedInCredentialIdsKeys = Object.keys(linkedInCredentialIds).sort();
|
|
|
|
expect(linkedInCredentialIdsKeys).toEqual(allCertifications);
|
|
});
|
|
});
|
|
|
|
describe('certToTitleMap', () => {
|
|
it('should not contain duplicate titles', () => {
|
|
const titles = Object.values(certToTitleMap);
|
|
const uniqueTitles = Array.from(new Set(titles));
|
|
|
|
expect(titles.length).toBe(uniqueTitles.length);
|
|
});
|
|
});
|
|
|
|
describe('certToIdMap', () => {
|
|
it('should have no duplicate values', () => {
|
|
const ids = Object.values(certToIdMap).sort();
|
|
const uniqueIds = Array.from(new Set(ids)).sort();
|
|
|
|
expect(uniqueIds).toEqual(ids);
|
|
});
|
|
});
|
|
|
|
describe('certSlugTypeMap', () => {
|
|
it.todo('should contain a value for all certifications', () => {
|
|
const allCertifications = Object.values(Certification).sort();
|
|
const certSlugTypeMapKeys = Object.keys(certSlugTypeMap).sort();
|
|
|
|
expect(certSlugTypeMapKeys).toEqual(allCertifications);
|
|
});
|
|
|
|
it('should have no duplicate values', () => {
|
|
const types = Object.values(certSlugTypeMap).sort();
|
|
const uniqueTypes = Array.from(new Set(types)).sort();
|
|
|
|
expect(uniqueTypes).toEqual(types);
|
|
});
|
|
});
|