getBuiltinRule.spec.js.flow 170 B

12345678
  1. // @flow
  2. import { getBuiltinRule } from './getBuiltinRule';
  3. describe('getBuiltinRule', () => {
  4. it('works with jest', () => {
  5. getBuiltinRule('no-undef');
  6. });
  7. });