Add tests for all the js/ts files inside testing/ and std/
The test file should be named in the pattern *_test.js for elsa to identify it as a test file.
Example:
// some_test.js
import { eq } from "./utils.ts";
Elsa.tests({
"test mode == `test`": function () {
eq(Elsa.mode, "test");
},
});
and run ./elsa test
Marking as a good first issue as anyone with Deno.test experience can give it a try 😄
Add tests for all the js/ts files inside
testing/andstd/The test file should be named in the pattern
*_test.jsfor elsa to identify it as a test file.Example:
and run
./elsa testMarking as a good first issue as anyone with Deno.test experience can give it a try 😄