webtest/test/webtest_test.gleam
Ethan Ruszanowski e295035982
Some checks are pending
test / test (push) Waiting to run
Init commit
2024-07-22 19:35:45 -04:00

13 lines
174 B
Gleam

import gleeunit
import gleeunit/should
pub fn main() {
gleeunit.main()
}
// gleeunit test functions end in `_test`
pub fn hello_world_test() {
1
|> should.equal(1)
}