We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f96981 commit 2076606Copy full SHA for 2076606
1 file changed
packages/shadow-objects/src/in-the-dark/Kernel.spec.ts
@@ -334,8 +334,8 @@ describe('Kernel', () => {
334
]);
335
336
expect(capturedProps).toBeDefined();
337
- expect(value(capturedProps!.foo)).toBe('valueA');
338
- expect(value(capturedProps!.bar)).toBe('valueB');
+ expect(value(capturedProps!['foo'])).toBe('valueA');
+ expect(value(capturedProps!['bar'])).toBe('valueB');
339
340
kernel.destroy();
341
});
0 commit comments