Files
freeCodeCamp/curriculum/schema/challenge-schema.test.mjs
2026-02-13 07:58:04 +01:00

10 lines
265 B
JavaScript

import { describe, expect, it } from 'vitest';
import { schema } from './challenge-schema.js';
describe('challenge schema', () => {
it('should not be changed without informing the mobile team', () => {
expect(schema.describe()).toMatchSnapshot();
});
});