2022-11-01 21:12:33 +00:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
|
|
|
2022-11-01 12:36:32 +00:00
|
|
|
/**
|
|
|
|
* Checks whether the chrome extensions defined in the config file are installed or not.
|
|
|
|
*
|
2022-11-01 21:12:33 +00:00
|
|
|
* @param {Object} config - Objects containing info about the configured extensions.
|
2022-11-01 12:36:32 +00:00
|
|
|
*
|
|
|
|
* @returns {Promise[]}
|
|
|
|
*/
|
2022-11-01 21:12:33 +00:00
|
|
|
export default function checkChromeExtensionsInstalled(config: any = {}) {
|
2022-11-01 12:36:32 +00:00
|
|
|
return Promise.resolve([]);
|
|
|
|
}
|