gitbeaker/tests/services/ApplicationSettings.js
2018-05-09 21:36:02 -04:00

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);
// });