resumefy
Version:
A simple toolkit to bring your JSON Resume to life
11 lines (10 loc) • 401 B
JavaScript
import { describe, it, expect } from 'vitest';
import * as indexModule from './index.js';
describe('index', () => {
it('should export all modules correctly', async () => {
expect(indexModule).toHaveProperty('cli');
expect(indexModule).toHaveProperty('render');
expect(indexModule).toHaveProperty('init');
expect(indexModule).toHaveProperty('validate');
});
});