index.test.js 391 Bytes
Newer Older
Joe Haddad's avatar
Joe Haddad committed
1
2
3
4
5
6
7
8
9
10
11
12
13
const { bootstrap, isSuccessfulTest } = require('../../utils');
beforeEach(async () => {
  await bootstrap({ directory: global.testDirectory, template: __dirname });
});

describe('issue #5176 (flow class properties interaction)', () => {
  it('passes tests', async () => {
    await isSuccessfulTest({
      directory: global.testDirectory,
      jestEnvironment: 'node',
    });
  });
});