tests: vaults (#2365)

* tests: signature tests

* tests: asymmetric

* feat: delete contact use case

* chore: lint

* chore: lint
This commit is contained in:
Mo
2023-07-24 14:28:28 -05:00
committed by GitHub
parent d6bcc808d5
commit 98c0228139
40 changed files with 649 additions and 145 deletions

View File

@@ -578,9 +578,11 @@ export class AppContext {
}
async changeNoteTitle(note, title) {
return this.application.mutator.changeNote(note, (mutator) => {
await this.application.mutator.changeNote(note, (mutator) => {
mutator.title = title
})
return this.findItem(note.uuid)
}
async changeNoteTitleAndSync(note, title) {