From beea6f9c829928f472b1dc78e805314099bd5658 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 10 Apr 2018 12:25:14 -0700 Subject: [PATCH] chore(testrunner): fix typo in readme --- utils/testrunner/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/testrunner/README.md b/utils/testrunner/README.md index 10374083..95cd5e9f 100644 --- a/utils/testrunner/README.md +++ b/utils/testrunner/README.md @@ -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); });