actions-hugo/__tests__/get-arch.test.ts
2021-05-27 13:03:38 +09:00

15 lines
368 B
TypeScript

import getArch from '../src/get-arch';
describe('getArch', () => {
test('processor architecture', () => {
expect(getArch('x64')).toBe('64bit');
expect(getArch('arm')).toBe('ARM');
expect(getArch('arm64')).toBe('ARM64');
});
test('exception', () => {
expect(() => {
getArch('mips');
}).toThrowError('mips is not supported');
});
});