diff --git a/client/src/main.test.ts b/client/src/main.test.ts new file mode 100644 index 0000000..8f8fa25 --- /dev/null +++ b/client/src/main.test.ts @@ -0,0 +1,5 @@ +import { expect, test } from "bun:test"; + +test("continuous_development", () => { + expect(2 + 2).toBe(4); +}) diff --git a/src/main.rs b/src/main.rs index cc1fd0c..3a6ca23 100644 --- a/src/main.rs +++ b/src/main.rs @@ -150,3 +150,11 @@ async fn main() { logger!(info "graceful shutdown"); } + +#[cfg(test)] +mod test { + #[test] + fn continuous_development() { + assert!(true); + } +}