Skip to content

Commit 55ad20b

Browse files
author
Matthew Bell
committed
remove unneeded async
1 parent cf437e3 commit 55ad20b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/__tests__/slots.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Card from './components/Card'
77
// Usage is the same as Vue Test Utils, since slots and scopedSlots
88
// in the render options are directly passed through to the Utils mount().
99
// For more, see: https://vue-test-utils.vuejs.org/api/options.html#slots
10-
test('Card component', async () => {
10+
test('Card component', () => {
1111
const { getByText } = render(Card, {
1212
slots: {
1313
header: '<h1>HEADER</h1>',

0 commit comments

Comments
 (0)