logger-chain
Version:
Zero deps simple node.js logger with colored outputs
12 lines (10 loc) • 367 B
text/typescript
import { describe, expect, it } from 'vitest';
//import { HELLO_WORLD } from '../src/index.js';
const HELLO_WORLD = 'test';
describe('ts-template', function () {
it('Hello world', async function () {
expect(HELLO_WORLD).to.be.a('string');
expect(HELLO_WORLD.length).to.be.gte(1);
expect(HELLO_WORLD).to.equal('Hello world!');
});
});