Changes after review

This commit is contained in:
ivk 2022-12-19 16:38:14 +01:00 committed by ganthern
parent 6273f5e582
commit 06299fb0c0
5 changed files with 186 additions and 47 deletions

View file

@ -27,13 +27,14 @@ o.spec("MailModelTest", function () {
const anotherFolder = createMailFolder({_id: ["folderListId", "archiveId"]})
anotherFolder.mails = "anotherListId"
anotherFolder.folderType = MailFolderType.ARCHIVE
const mailboxDetails: Partial<MailboxDetail>[] = [
{
folders: new FolderSystem([inboxFolder]),
},
]
let mailboxDetails: Partial<MailboxDetail>[]
let logins: LoginController
o.beforeEach(function () {
mailboxDetails = [
{
folders: new FolderSystem([inboxFolder]),
},
]
notifications = {}
showSpy = notifications.showNotification = spy()
const restClient = new EntityRestClientMock()