mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-28 14:01:28 -04:00
10 lines
265 B
JavaScript
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();
|
|
});
|
|
});
|