We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de19b52 commit 76b9d3eCopy full SHA for 76b9d3e
.github/workflows/test.yml
@@ -44,7 +44,7 @@ jobs:
44
45
- name: test
46
run: |
47
- busted -o utfTerminal
+ busted -o TAP
48
49
test_resty:
50
runs-on: ubuntu-latest
spec/resty_busted.lua
@@ -8,5 +8,5 @@ package.loaded.moonscript = require("moonscript.base")
8
local dofile = require("moonscript.base").dofile
9
package.loaded["spec.util"] = dofile "spec/util.moon"
10
11
-require 'busted.runner'({ standalone = false })
+require 'busted.runner'({ standalone = false, output = 'TAP' })
12
0 commit comments