Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bloodyowl committed Nov 22, 2020
1 parent b9c56ea commit 941e17d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions bin/retest
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ async function start() {
let port = await getPort()
globalThis.retestHttp = (req, res) => res.status(404).end("ReScript Test HTTP isn't configured")
globalThis.server = express()
globalThis.server.disable("x-powered-by")
globalThis.server.use(cors())
globalThis.server.use((req, res) => {
globalThis.retestHttp(req, res)
Expand Down
1 change: 0 additions & 1 deletion test/TestAllPass.res
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ test("Custom comparator", () => {
let a = "a"

assertion(~message="Char code should match", ~operator="isCharCode", isCharCode, a, 97.0)
assertion(~message="Char code should match", ~operator="isCharCode", isCharCode, a, 98.0)
})

type user = {username: string, id: string}
Expand Down

0 comments on commit 941e17d

Please sign in to comment.