test out continuous development (#3)
This commit is contained in:
5
client/src/main.test.ts
Normal file
5
client/src/main.test.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import { expect, test } from "bun:test";
|
||||||
|
|
||||||
|
test("continuous_development", () => {
|
||||||
|
expect(2 + 2).toBe(4);
|
||||||
|
})
|
@@ -150,3 +150,11 @@ async fn main() {
|
|||||||
|
|
||||||
logger!(info "graceful shutdown");
|
logger!(info "graceful shutdown");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
#[test]
|
||||||
|
fn continuous_development() {
|
||||||
|
assert!(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user