mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-15 00:02:30 +03:00
11 lines
346 B
TypeScript
11 lines
346 B
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { mount } from '@vue/test-utils';
|
|
import HelloWorld from '~/OverlayScrollbars.vue';
|
|
|
|
describe('HelloWorld', () => {
|
|
it('renders properly', () => {
|
|
const wrapper = mount(HelloWorld, { propsData: { msg: 'Hello Vitest' } });
|
|
expect(wrapper.text()).toContain('Hello Vitest');
|
|
});
|
|
});
|