Files
freeCodeCamp/curriculum/schema/challenge-schema.test.js
2023-11-21 19:31:21 +01:00

14 lines
334 B
JavaScript

const { readFileSync } = require('fs');
const path = require('path');
describe('challenge schema', () => {
it('Notify mobile team BEFORE updating snapshot', () => {
const schemaFile = readFileSync(
path.resolve(__dirname, './challenge-schema.js'),
'utf8'
);
expect(schemaFile).toMatchSnapshot();
});
});