mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 12:05:39 -05:00
11 lines
411 B
TypeScript
11 lines
411 B
TypeScript
import { Certification, linkedInCredentialIds } 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);
|
|
});
|
|
});
|