diff --git a/reverse-proxy.config.ts b/reverse-proxy.config.ts index cd14c5d..438e04e 100644 --- a/reverse-proxy.config.ts +++ b/reverse-proxy.config.ts @@ -1,3 +1,6 @@ export default { 'localhost:3000': 'stacks.localhost', + // 'localhost:3001': 'docs.stacks.localhost', + // 'localhost:8080': 'api.stacks.localhost', + // 'localhost:1234': 'example.test', } diff --git a/test/index.test.ts b/test/reverse-proxy.test.ts similarity index 55% rename from test/index.test.ts rename to test/reverse-proxy.test.ts index 5bbfbd1..d7fbdf1 100644 --- a/test/index.test.ts +++ b/test/reverse-proxy.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it } from 'bun:test' -describe('should', () => { - it('exported', () => { +describe('@stacksjs/reverse-proxy', () => { + it('works', () => { expect(1).toEqual(1) }) })