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