Files
spa_app/test/app_test.gleam
Martijn Remmen 0c60a58779
Some checks failed
test / test (push) Has been cancelled
initial commit
2024-07-13 11:28:36 +02: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)
}