Skip to content

Commit

Permalink
Fix ci.
Browse files Browse the repository at this point in the history
  • Loading branch information
fubark committed Mar 8, 2024
1 parent c437dfd commit d4a2191
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/modules/os.cy
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ my res = os.args()
t.eq(res.len() > 0, true)

-- createDir()
os.removeDir('test/assets/tempdir')
try:
os.removeDir('test/assets/tempdir')
catch:
pass
os.createDir('test/assets/tempdir')
var dir = os.openDir('test/assets/tempdir')
t.eq(dir.stat().type, .dir)
Expand Down

0 comments on commit d4a2191

Please sign in to comment.