From 0d0aad3879652a004a05a7c2b045e8d386ad6258 Mon Sep 17 00:00:00 2001 From: Nathanael Beisiegel Date: Mon, 2 Jul 2018 16:08:58 -0400 Subject: [PATCH] Updated jest-circus to set mode to 'skip' when string-only --- packages/jest-circus/src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/jest-circus/src/index.js b/packages/jest-circus/src/index.js index 104b3aad2639..bf1ce883495d 100644 --- a/packages/jest-circus/src/index.js +++ b/packages/jest-circus/src/index.js @@ -77,6 +77,7 @@ const test = (testName: TestName, fn: TestFn, timeout?: number) => { return dispatch({ asyncError, fn, + mode: fn ? undefined : 'skip', name: 'add_test', testName, timeout,