@onereach/orest-input-cli
Version:
The tool for creating, serving, and publishing OREST Inputs
11 lines (8 loc) • 319 B
JavaScript
import { describe, expect, it } from '@jest/globals';
import VComponent from '@src/VComponent.vue';
// Example of tests for VComponent component. You can adopt it to your component structure or remove it
describe('VComponent', () => {
it('defines component', () => {
expect(VComponent).toBeDefined();
});
});