Skip to content

Service Desk API #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 3, 2022
Prev Previous commit
Next Next commit
timeout moved
  • Loading branch information
MrRefactoring committed Jan 3, 2022
commit a3f492372e72eaff4dc8be7ab0683c775caffe66
4 changes: 0 additions & 4 deletions tests/integration/version3/dashboards.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ describe('Dashboards', () => {
let dashboard: Version3Models.Dashboard;
const client = getVersion3Client();

beforeAll(async () => {
jest.setTimeout(Constants.testTimeouts);
});

it('should create dashboard', async () => {
dashboard = await client.dashboards.createDashboard({
name: Constants.testDashboardName,
Expand Down
4 changes: 4 additions & 0 deletions tests/setup.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import * as dotenv from 'dotenv';
import { Constants } from './integration';

dotenv.config();

jest.setTimeout(Constants.testTimeouts);