We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db86eb0 commit dda2e87Copy full SHA for dda2e87
src/Toast/__snapshots__/withToast.test.tsx.snap
@@ -1,6 +1,6 @@
1
// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3
-exports[`test withToast it can create a new Toast message 1`] = `
+exports[`withToast() can create a new Toast message 1`] = `
4
[
5
<div
6
className="Alert Alert-success"
src/Toast/withToast.test.tsx
@@ -16,8 +16,8 @@ function WrappedComponent() {
16
return <div />;
17
}
18
19
-describe('test withToast', () => {
20
- test('it can create a new Toast message', async () => {
+describe('withToast()', () => {
+ it('can create a new Toast message', async () => {
21
const newMessage = 'This is just a test...';
22
const ComponentWithToast = withToast(WrappedComponent);
23
const toast = create(<ComponentWithToast />);
0 commit comments