Chore: Restore shouldFailOnLog being enabled only during CI (#66498)

pull/61300/head
Josh Hunt 2 years ago committed by GitHub
parent afd52d0866
commit cef9f64f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      public/test/setupTests.ts

@ -6,7 +6,7 @@ import { initReactI18next } from 'react-i18next';
import { matchers } from './matchers';
failOnConsole({
shouldFailOnLog: true,
shouldFailOnLog: process.env.CI ? true : false,
});
expect.extend(matchers);

Loading…
Cancel
Save