feat: project hooks and linting + WARN commit message linting not done
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
import { assertEquals } from "@std/assert";
|
||||
import { add } from "./main.ts";
|
||||
|
||||
function add(a: number, b: number): number {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
Deno.test(function addTest() {
|
||||
assertEquals(add(2, 3), 5);
|
||||
assertEquals(add(2, 3), 5);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user