proxyd
Version:
Reverse proxy to socks5 or http proxy
12 lines (9 loc) • 327 B
text/typescript
import { describe, expect, it } from 'vitest';
const HELLO_WORLD = 'Hello world!';
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!');
});
});