mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-25 16:04:01 +00:00
27 lines
843 B
JavaScript
27 lines
843 B
JavaScript
// import { ApplicationSettings } from '../../dist/latest';
|
|
|
|
// test('Basic init of ApplicationSettings library', async ()=> {
|
|
// const service = new ApplicationSettings({ url: process.env.TEST_URL, token: process.env.TEST_TOKEN });
|
|
|
|
// assert.true(true);
|
|
// });
|
|
|
|
// test('Getting all the application settings', async () => {
|
|
// const service = new ApplicationSettings({ url: process.env.TEST_URL, token: process.env.TEST_TOKEN });
|
|
// const settings = await service.all();
|
|
|
|
// // Check the settings
|
|
// assert.true(true);
|
|
// });
|
|
|
|
// test('Edit the application settings', async (assert) => {
|
|
// const service = new ApplicationSettings({ url: process.env.TEST_URL, token: process.env.TEST_TOKEN });
|
|
// const settings = await service.edit({
|
|
|
|
// });
|
|
|
|
// // Check the settings
|
|
// // Return to original state
|
|
// assert.true(true);
|
|
// });
|