mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
Adding extensive typing support Unified browser and Node.JS implementations Adding support of Gitlab API 16.0
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import pkg from '../../package.json';
|
|
|
|
describe('General', () => {
|
|
it('should return the expose a gitbeaker commnad', () => {
|
|
expect(pkg.bin).toHaveProperty('gitbeaker');
|
|
});
|
|
|
|
it('should return the expose a gb commnad', () => {
|
|
expect(pkg.bin).toHaveProperty('gb');
|
|
});
|
|
});
|