1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-30 10:36:35 +02:00

Tools: Trying to fix macOS tests on CI

This commit is contained in:
Laurent Cozic 2021-08-06 18:37:33 +01:00
parent f9cfefdb29
commit 3fb77c4e37

View File

@ -52,7 +52,8 @@ import JoplinServerApi from '../JoplinServerApi';
import { FolderEntity } from '../services/database/types';
import { credentialFile, readCredentialFile } from '../utils/credentialFiles';
import SyncTargetJoplinCloud from '../SyncTargetJoplinCloud';
const { loadKeychainServiceAndSettings } = require('../services/SettingUtils');
import KeychainService from '../services/keychain/KeychainService';
import { loadKeychainServiceAndSettings } from '../services/SettingUtils';
const md5 = require('md5');
const S3 = require('aws-sdk/clients/s3');
const { Dirnames } = require('../services/synchronizer/utils/types');
@ -823,6 +824,8 @@ class TestApp extends BaseApplication {
private logger_: LoggerWrapper;
public constructor(hasGui = true) {
KeychainService.instance().enabled = false;
super();
this.hasGui_ = hasGui;
this.middlewareCalls_ = [];