File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,12 @@ jobs:
30
30
- run : node ./bin/cake build:parser
31
31
# Build the browser compiler for the headless browser test
32
32
- run : node ./bin/cake build:browser
33
+ # Build test.html, so that test:browser uses the latest tests
34
+ - run : node ./bin/cake doc:test
33
35
34
36
# Check that the git diff is clean, to ensure that the updated build output was committed
35
37
- run : git diff --exit-code
36
38
37
- # Build test.html, so that test:browser uses the latest tests
38
- - run : node ./bin/cake doc:test
39
-
40
39
# Test
41
40
- run : node ./bin/cake test
42
41
- run : node ./bin/cake test:browser
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ buildDocTests = (watch = no) ->
310
310
# Helpers
311
311
testsInScriptBlocks = ->
312
312
output = ' '
313
- for filename in fs .readdirSync testsSourceFolder
313
+ for filename in fs .readdirSync ( testsSourceFolder). sort ()
314
314
if filename .indexOf (' .coffee' ) isnt - 1
315
315
type = ' coffeescript'
316
316
else if filename .indexOf (' .litcoffee' ) isnt - 1
You can’t perform that action at this time.
0 commit comments