Retrait des points-virgules finaux

This commit is contained in:
2024-12-07 10:24:41 +01:00
parent ab180a12ce
commit 2ad2063339
20 changed files with 101 additions and 103 deletions

View File

@ -1,10 +1,10 @@
import * as React from 'react';
import renderer from 'react-test-renderer';
import * as React from 'react'
import renderer from 'react-test-renderer'
import { ThemedText } from '../ThemedText';
import { ThemedText } from '../ThemedText'
it(`renders correctly`, () => {
const tree = renderer.create(<ThemedText>Snapshot test!</ThemedText>).toJSON();
const tree = renderer.create(<ThemedText>Snapshot test!</ThemedText>).toJSON()
expect(tree).toMatchSnapshot();
});
expect(tree).toMatchSnapshot()
})

View File

@ -21,4 +21,4 @@ exports[`renders correctly 1`] = `
>
Snapshot test!
</Text>
`;
`