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