mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 10:16:32 -05:00
Added await to wait for completion of note creation in tests
Signed-off-by: Yannick Bungers <git@innay.de>
This commit is contained in:
parent
bf1081bcf6
commit
64a064f9b6
1 changed files with 6 additions and 5 deletions
|
@ -42,7 +42,7 @@ describe('Notes', () => {
|
|||
/* TODO Note maybe not added to history by createNote,
|
||||
use function from HistoryService instead
|
||||
*/
|
||||
notesService.createNote('', 'testGetHistory');
|
||||
await notesService.createNote('', 'testGetHistory');
|
||||
const response = await request(app.getHttpServer())
|
||||
.get('/me/history')
|
||||
.expect('Content-Type', /json/)
|
||||
|
@ -61,7 +61,7 @@ describe('Notes', () => {
|
|||
/* TODO Note maybe not added to history by createNote,
|
||||
use function from HistoryService instead
|
||||
*/
|
||||
notesService.createNote('', noteName);
|
||||
await notesService.createNote('', noteName);
|
||||
const response = await request(app.getHttpServer())
|
||||
.get('/me/history/' + noteName)
|
||||
.expect('Content-Type', /json/)
|
||||
|
@ -75,7 +75,7 @@ describe('Notes', () => {
|
|||
/* TODO Note maybe not added to history by createNote,
|
||||
use function from HistoryService instead
|
||||
*/
|
||||
notesService.createNote('This is a test note.', noteName);
|
||||
await notesService.createNote('This is a test note.', noteName);
|
||||
const response = await request(app.getHttpServer())
|
||||
.delete('/me/history/test3')
|
||||
.expect(204);
|
||||
|
@ -93,7 +93,7 @@ describe('Notes', () => {
|
|||
it.skip(`PUT /me/history/{note}`, async () => {
|
||||
const noteName = 'testPutNoteHistory';
|
||||
// TODO use function from HistoryService to add an History Entry
|
||||
notesService.createNote('', noteName);
|
||||
await notesService.createNote('', noteName);
|
||||
let historyEntryUpdateDto = new HistoryEntryUpdateDto();
|
||||
historyEntryUpdateDto.pinStatus = true;
|
||||
let response = await request(app.getHttpServer())
|
||||
|
@ -120,7 +120,8 @@ describe('Notes', () => {
|
|||
|
||||
|
||||
it.skip(`GET /me/notes/`, async () => {
|
||||
notesService.createNote('This is a test note.', 'test7');
|
||||
// TODO use function from HistoryService to add an History Entry
|
||||
await notesService.createNote('This is a test note.', 'test7');
|
||||
// usersService.getALLNotesOwnedByUser() TODO Implement function
|
||||
const response = await request(app.getHttpServer())
|
||||
.get('/me/notes/')
|
||||
|
|
Loading…
Reference in a new issue