We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The runner tests are failing on Windows OS when tested on github actions
Steps to reproduce the behavior:
runs-on: ubuntu-latest
strategy: matrix: os: [windows-latest, ubuntu-latest] runs-on: ${{ matrix.os }}
FAIL test/unit/util.spec.ts Check utils library × Should correctly resolve absolute path (6 ms) ● Check utils library › Should correctly resolve absolute path expect(received).toEqual(expected) // deep equality Expected: "C:Usersdtaas" Received: "C:\\Usersdtaas" 8 | // prettier-ignore 9 | // eslint-disable-next-line no-useless-escape > 10 | expect(resolveFile('C:\Users\dtaas')).toEqual('C:\Users\dtaas'); | ^ 11 | } else { 12 | expect(resolveFile('/opt/dtaas')).toEqual('/opt/dtaas'); 13 | } at Object.<anonymous> (test/unit/util.spec.ts:10:45)
Github action is successful for windows as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The runner tests are failing on Windows OS when tested on github actions
To Reproduce
Steps to reproduce the behavior:
runs-on: ubuntu-latest
) with lines-18 to 21 of lib-ms.ymlExpected behavior
Github action is successful for windows as well.
The text was updated successfully, but these errors were encountered: