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}