From 57284d92b009136e4e30cf051a11c6c937cc924f Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Mon, 25 Mar 2019 08:00:06 -0700 Subject: [PATCH] Fix style, run whole test suite dummy --- __tests__/resolveConfig.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__tests__/resolveConfig.test.js b/__tests__/resolveConfig.test.js index cad38c54a5d7..abbd669625ef 100644 --- a/__tests__/resolveConfig.test.js +++ b/__tests__/resolveConfig.test.js @@ -758,7 +758,7 @@ test('the theme function can use a default value if the key is missing', () => { }) }) -test.only('the theme function can resolve function values', () => { +test('the theme function can resolve function values', () => { const userConfig = { theme: { textColor: theme => ({ @@ -910,7 +910,7 @@ test('the original theme is not mutated', () => { }, variants: { borderColor: ['responsive', 'hover'], - } + }, } const defaultConfig = { @@ -941,6 +941,6 @@ test('the original theme is not mutated', () => { }, variants: { borderColor: ['responsive', 'hover'], - } + }, }) })