You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running gleam test, if the project_test module doesn't have a main function, this error is printed:
error: Module does not have a main function
`project_test` does not have a main function so the module can not be run.
Hint: Add a public `main` function to to `src/project_test.gleam`.
Which isn't quite correct, as the file is test/project_test.gleam not src/project_test.gleam
The text was updated successfully, but these errors were encountered:
When running
gleam test
, if theproject_test
module doesn't have amain
function, this error is printed:Which isn't quite correct, as the file is
test/project_test.gleam
notsrc/project_test.gleam
The text was updated successfully, but these errors were encountered: