UNPKG

220 BJavaScriptView Raw
1import fs from 'fs';
2
3describe('Eslint rules will output same markup', () => {
4 it('match', () => {
5 const text = fs.readFileSync('./test/test-markup.output.js', 'utf8');
6
7 expect(text).toMatchSnapshot();
8 })
9})