diff --git a/tests/unit/withOnyxTest.js b/tests/unit/withOnyxTest.js index 6f6eba37..bf8724f2 100644 --- a/tests/unit/withOnyxTest.js +++ b/tests/unit/withOnyxTest.js @@ -561,6 +561,10 @@ describe('withOnyxTest', () => { key: ONYX_KEYS.SIMPLE_KEY, initialValue: 'initialValue', }, + simple2: { + key: ONYX_KEYS.SIMPLE_KEY_2, + initialValue: false, + }, })(ViewWithCollections); render( { onRender, testObject: {isDefaultProp: true}, simple: 'initialValue', + simple2: false, }); }); });