mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-07-09 22:57:30 +00:00
feat: support downloading goreleaser pro (#284)
This commit is contained in:
committed by
GitHub
parent
a3b2f49e7c
commit
70eb4e573c
@@ -0,0 +1,10 @@
|
||||
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('');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user