File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,12 @@ jobs:
3030 - run : node ./bin/cake build:parser
3131 # Build the browser compiler for the headless browser test
3232 - 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
3335
3436 # Check that the git diff is clean, to ensure that the updated build output was committed
3537 - run : git diff --exit-code
3638
37- # Build test.html, so that test:browser uses the latest tests
38- - run : node ./bin/cake doc:test
39-
4039 # Test
4140 - run : node ./bin/cake test
4241 - run : node ./bin/cake test:browser
Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ buildDocTests = (watch = no) ->
310310 # Helpers
311311 testsInScriptBlocks = ->
312312 output = ' '
313- for filename in fs .readdirSync testsSourceFolder
313+ for filename in fs .readdirSync ( testsSourceFolder). sort ()
314314 if filename .indexOf (' .coffee' ) isnt - 1
315315 type = ' coffeescript'
316316 else if filename .indexOf (' .litcoffee' ) isnt - 1
You can’t perform that action at this time.
0 commit comments