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