update api klinik ruang
This commit is contained in:
No files matched your search
@@ -0,0 +1,20 @@
|
||||
import { describe, it, expect } from 'vitest'
|
||||
import { mount } from '@vue/test-utils'
|
||||
|
||||
// Basic test to verify Vitest is working
|
||||
describe('Vitest Setup', () => {
|
||||
it('works correctly', () => {
|
||||
expect(1 + 1).toBe(2)
|
||||
})
|
||||
})
|
||||
|
||||
// Basic test for Vue component mounting (optional, depends on having a simple component)
|
||||
/*
|
||||
import MyComponent from './MyComponent.vue'
|
||||
describe('Component Test', () => {
|
||||
it('mounts properly', () => {
|
||||
const wrapper = mount(MyComponent)
|
||||
expect(wrapper.exists()).toBe(true)
|
||||
})
|
||||
})
|
||||
*/
|
||||
Reference in New Issue
Block a user