Skip to content

Commit 25c12d9

Browse files
committed
Fix tests
1 parent 045df4f commit 25c12d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/state/selectors/test/is-woocommerce-core-profiler-flow.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import isWooCommerceCoreProfilerFlow from 'calypso/state/selectors/is-woocommerce-core-profiler-flow';
22

33
describe( 'isWooCommerceCoreProfilerFlow', () => {
4-
test( 'should return false when no argument', () => {
5-
expect( isWooCommerceCoreProfilerFlow() ).toBe( false );
4+
test( 'should return false when state is empty', () => {
5+
expect( isWooCommerceCoreProfilerFlow( {} ) ).toBe( false );
66
} );
77

88
test( 'should return false if no query present', () => {

0 commit comments

Comments
 (0)