1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Tools: Replace Jasmine with Jest to run tests

This commit is contained in:
Laurent Cozic
2020-11-10 15:59:30 +00:00
parent c249333e2a
commit 06f2fda946
37 changed files with 4275 additions and 334 deletions

View File

@ -413,6 +413,10 @@ export default class KeymapService extends BaseService {
private static instance_:KeymapService = null;
public static destroyInstance() {
this.instance_ = null;
}
public static instance():KeymapService {
if (this.instance_) return this.instance_;