chore(testrunner): fix typo in readme

This commit is contained in:
Andrey Lushnikov 2018-04-10 12:25:14 -07:00 committed by GitHub
parent fafd156d7b
commit beea6f9c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ beforeAll(state => {
describe('math', () => {
it('to be sane', async (state, test) => {
state.parallel; // Very first test will always be ran by the 0's thread
state.parallelIndex; // Very first test will always be ran by the 0's thread
state.foo; // this will be 'bar'
expect(2 + 2).toBe(4);
});