Run test on Windows using GitHub Actions

This commit is contained in:
Björn Dahlgren 2021-03-02 15:38:30 +01:00
parent 2a1fbcc738
commit d88fd46e8f
2 changed files with 3 additions and 1 deletions

View File

@ -24,6 +24,7 @@ jobs:
- 4.x - 4.x
os: os:
- ubuntu-20.04 - ubuntu-20.04
- windows-2019
steps: steps:
- name: Checkout - name: Checkout

View File

@ -1,3 +1,4 @@
var path = require('path')
require('should') require('should')
var tk = require('timekeeper') var tk = require('timekeeper')
@ -24,7 +25,7 @@ describe('Logs', function () {
describe('generateLogFilePath()', function () { describe('generateLogFilePath()', function () {
it('should generate valid file path', function () { it('should generate valid file path', function () {
logs.generateLogFilePath().should.eql('/tmp/logs/arma3server_2015-10-21_19-28-32.log') logs.generateLogFilePath().should.eql(path.join('/tmp', 'logs', 'arma3server_2015-10-21_19-28-32.log'))
}) })
}) })
}) })