mirror of https://github.com/statping/statping
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
![]() |
import API from "@/API"
|
||
|
import { shallowMount, mount } from '@vue/test-utils'
|
||
|
|
||
|
describe('API Tests', async () => {
|
||
|
|
||
|
await it('should get core info', async () => {
|
||
|
|
||
|
const wrapper = mount(API)
|
||
|
|
||
|
const core = await wrapper.core()
|
||
|
expect(core).toBe(9)
|
||
|
|
||
|
|
||
|
})
|
||
|
|
||
|
});
|