update unit test

Signed-off-by: Eric Yang <weityang@ebay.com>
This commit is contained in:
Eric Yang
2023-08-18 18:30:44 -07:00
parent 0c9907645a
commit a6c9198ac8
@@ -21,7 +21,7 @@ import { StructuredMetadataTable } from './StructuredMetadataTable';
describe('<StructuredMetadataTable />', () => {
it('renders without exploding', () => {
const metadata = { hello: 'world' };
const metadata = { hello: 'world', foo: null };
const { getByText } = render(
<StructuredMetadataTable metadata={metadata} />,
);