Minor test clean up

This commit is contained in:
Nicolas Gallagher
2016-03-08 00:21:47 -08:00
parent 7295a8fee8
commit 7ab33727c4
2 changed files with 1 additions and 2 deletions

View File

@@ -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' +

View File

@@ -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}