From 7ab33727c47f41dccea8edd773a7882ca09ce088 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Tue, 8 Mar 2016 00:21:47 -0800 Subject: [PATCH] Minor test clean up --- src/apis/StyleSheet/__tests__/Store-test.js | 1 - src/apis/StyleSheet/__tests__/flattenStyle-test.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/apis/StyleSheet/__tests__/Store-test.js b/src/apis/StyleSheet/__tests__/Store-test.js index d3419c48..f2ca4c78 100644 --- a/src/apis/StyleSheet/__tests__/Store-test.js +++ b/src/apis/StyleSheet/__tests__/Store-test.js @@ -83,7 +83,6 @@ suite('apis/StyleSheet/Store', () => { store.set('fontFamily', '"Helvetica Neue", Arial, sans-serif') store.set('marginBottom', '0px') store.set('width', '100%') - console.log(store.toString()) const expected = '/* 6 unique declarations */\n' + '.backgroundColor\\:rgba\\(0\\,0\\,0\\,0\\){background-color:rgba(0,0,0,0);}\n' + diff --git a/src/apis/StyleSheet/__tests__/flattenStyle-test.js b/src/apis/StyleSheet/__tests__/flattenStyle-test.js index 0ebaa74c..5d5576d6 100644 --- a/src/apis/StyleSheet/__tests__/flattenStyle-test.js +++ b/src/apis/StyleSheet/__tests__/flattenStyle-test.js @@ -12,7 +12,7 @@ import assert from 'assert' import flattenStyle from '../flattenStyle' -suite('flattenStyle', () => { +suite('apis/StyleSheet/flattenStyle', () => { test('should merge style objects', () => { const style1 = {opacity: 1} const style2 = {order: 2}