1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00

update test platform map

This commit is contained in:
Alif Rachmawadi 2020-10-08 01:36:34 +00:00
parent 45483e4c19
commit 26bf50084a
No known key found for this signature in database
GPG key ID: 79DA63C0F3A55BB1

View file

@ -9,8 +9,8 @@ describe('release tests', () => {
it('getPlatform', () => {
const platformMap: {[index: string]: string} = {
linux: 'linux',
macos: 'darwin',
windows: 'win32'
darwin: 'macos',
win32: 'windows'
};
expect(platform).toEqual(platformMap[process.platform]);