Skip to content

Commit 6a13409

Browse files
committed
Change ExampleComponent import to named import in template test
1 parent f63df7b commit 6a13409

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

template/default/src/test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import ExampleComponent from './'
1+
import { ExampleComponent } from './';
22

33
describe('ExampleComponent', () => {
44
it('is truthy', () => {
5-
expect(ExampleComponent).toBeTruthy()
6-
})
7-
})
5+
expect(ExampleComponent).toBeTruthy();
6+
});
7+
});

0 commit comments

Comments
 (0)