Skip to content

Commit

Permalink
Merge pull request #8 from observerly/feature/testing/useMount
Browse files Browse the repository at this point in the history
Created a base test for the useMount() composable being defined as an export.
  • Loading branch information
michealroberts authored Nov 29, 2021
2 parents a4d7ecc + d6f111c commit 2cac13d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/composables/useMount/index.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import {
describe,
expect,
it
} from '@jest/globals'

import {
useMount
} from './'

describe('useMount', () => {
it('Should Be Defined', () => {
expect(useMount).toBeDefined()
})
})

0 comments on commit 2cac13d

Please sign in to comment.