@stylable/dom-test-kit
Advanced tools
Comparing version 2.3.1-alpha.1 to 2.3.1-alpha.2
@@ -6,3 +6,3 @@ "use strict"; | ||
var res = typeof sheet.$cssStates === 'function' ? sheet.$cssStates({}) : {}; | ||
if (res.className) { | ||
if (res.hasOwnProperty('className')) { | ||
return 'compat'; | ||
@@ -9,0 +9,0 @@ } |
{ | ||
"name": "@stylable/dom-test-kit", | ||
"version": "2.3.1-alpha.1", | ||
"version": "2.3.1-alpha.2", | ||
"description": "Stylable DOM testing utilities", | ||
@@ -32,3 +32,3 @@ "main": "./cjs/index.js", | ||
"license": "BSD-3-Clause", | ||
"gitHead": "2c40784c57eb358eeb2784fa1b4051431e5780a7" | ||
"gitHead": "a5787185832344c7629e820404656f32c87dfd50" | ||
} |
@@ -23,3 +23,3 @@ export type StateValue = boolean | number | string; | ||
const res = typeof sheet.$cssStates === 'function' ? sheet.$cssStates({}) : {}; | ||
if (res.className) { | ||
if (res.hasOwnProperty('className')) { | ||
return 'compat'; | ||
@@ -26,0 +26,0 @@ } else { |
Sorry, the diff of this file is not supported yet
37502