Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge a41174e into 724f339
Browse files Browse the repository at this point in the history
  • Loading branch information
kesselb committed May 7, 2019
2 parents 724f339 + a41174e commit 0e949ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Bump version number to 0.8.6. [#1206](https://github.com/geli-lms/geli/pull/1206)
- Refactor `DownloadController`. [#913](https://github.com/geli-lms/geli/issues/913)
- Timeout for pdf export tests increased. [#1248](https://github.com/geli-lms/geli/pull/1248)

### Fixed
- Apidoc: parser plugin 'param' not found in block. [#1207](https://github.com/geli-lms/geli/pull/1207)
Expand Down
4 changes: 2 additions & 2 deletions api/test/integration/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ describe('DownloadFile', () => {
.catch(err => err.response);
expect(res).to.have.status(200);
expect(res).to.be.json;
}).timeout(30000);
}).timeout(45000);
it('should pass (student)', async () => {
const course = await FixtureUtils.getRandomCourseWithAllUnitTypes();
const student = await FixtureUtils.getRandomStudentForCourse(course);
Expand All @@ -209,7 +209,7 @@ describe('DownloadFile', () => {
.catch(err => err.response);
expect(res).to.have.status(200);
expect(res).to.be.json;
}).timeout(30000);
}).timeout(45000);
});

describe(`POST ${BASE_URL + '/pdf/single'}`, () => {
Expand Down

0 comments on commit 0e949ab

Please sign in to comment.