mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-06-29 22:37:30 +00:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
import * as pro from '../src/pro';
|
|
|
|
describe('pro', () => {
|
|
it('suffixes pro distribution', async () => {
|
|
expect(pro.suffix('goreleaser-pro')).toEqual('-pro');
|
|
});
|
|
it('does not suffix oss distribution', async () => {
|
|
expect(pro.suffix('goreleaser')).toEqual('');
|
|
});
|
|
});
|