mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-30 12:05:39 -05:00
13 lines
394 B
JavaScript
13 lines
394 B
JavaScript
/* global it expect */
|
|
|
|
import { getFallbackFrontEndDate } from '../boot/certificate';
|
|
import { fullStackChallenges } from './fixtures';
|
|
|
|
describe('boot/certificate', () => {
|
|
describe('getFallbackFrontEndDate', () => {
|
|
it('should return the date of the latest completed challenge', () => {
|
|
expect(getFallbackFrontEndDate(fullStackChallenges)).toBe(1685210952511);
|
|
});
|
|
});
|
|
});
|