mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 03:38:51 +02:00
13 lines
448 B
JavaScript
13 lines
448 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
env: {
|
|
// The tests in this folder are testing based on WebExtensions, so lets
|
|
// just define the webextensions environment here.
|
|
webextensions: true,
|
|
// Many parts of WebExtensions test definitions (e.g. content scripts) also
|
|
// interact with the browser environment, so define that here as we don't
|
|
// have an easy way to handle per-function/scope usage yet.
|
|
browser: true,
|
|
},
|
|
};
|