Skip to content
This repository was archived by the owner on Dec 30, 2021. It is now read-only.

Commit c84d51b

Browse files
committed
add import.meta.env support to test runner
1 parent 1207a1c commit c84d51b

File tree

4 files changed

+66
-4
lines changed

4 files changed

+66
-4
lines changed

packages/app-scripts-react/jest/babelTransform.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
"use strict";
99

1010
const babelJest = require("babel-jest");
11+
const importMetaBabelPlugin = require("./importMetaBabelPlugin");
1112

1213
module.exports = babelJest.createTransformer({
1314
presets: [
1415
"babel-preset-react-app",
1516
"@babel/preset-react",
1617
"@babel/preset-typescript",
1718
],
18-
plugins: [
19-
["@babel/plugin-syntax-import-meta"],
20-
],
19+
plugins: [[importMetaBabelPlugin]],
2120
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
const template = require("@babel/template").default;
2+
3+
const PUBLIC_ENV_REGEX = /^SNOWPACK_PUBLIC_/;
4+
function generateEnvObject(mode) {
5+
const envObject = { ...process.env };
6+
for (const env of Object.keys(envObject)) {
7+
if (!PUBLIC_ENV_REGEX.test(env)) {
8+
delete envObject[env];
9+
}
10+
}
11+
envObject.MODE = mode;
12+
envObject.NODE_ENV = mode;
13+
return envObject;
14+
}
15+
16+
/**
17+
* Add import.meta.env support
18+
* Note: import.meta.url is not supported at this time
19+
*/
20+
module.exports = function () {
21+
const ast = template.ast(`
22+
({env: ${JSON.stringify(generateEnvObject("test"))}})
23+
`);
24+
return {
25+
visitor: {
26+
MetaProperty(path, state) {
27+
path.replaceWith(ast);
28+
},
29+
},
30+
};
31+
};

packages/app-scripts-svelte/jest/babelTransform.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"use strict";
99

1010
const babelJest = require("babel-jest");
11+
const importMetaBabelPlugin = require("./importMetaBabelPlugin");
1112

1213
module.exports = babelJest.createTransformer({
1314
presets: [
@@ -20,5 +21,5 @@ module.exports = babelJest.createTransformer({
2021
},
2122
],
2223
],
23-
plugins: [],
24+
plugins: [[importMetaBabelPlugin]],
2425
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
const template = require("@babel/template").default;
2+
3+
const PUBLIC_ENV_REGEX = /^SNOWPACK_PUBLIC_/;
4+
function generateEnvObject(mode) {
5+
const envObject = { ...process.env };
6+
for (const env of Object.keys(envObject)) {
7+
if (!PUBLIC_ENV_REGEX.test(env)) {
8+
delete envObject[env];
9+
}
10+
}
11+
envObject.MODE = mode;
12+
envObject.NODE_ENV = mode;
13+
return envObject;
14+
}
15+
16+
/**
17+
* Add import.meta.env support
18+
* Note: import.meta.url is not supported at this time
19+
*/
20+
module.exports = function () {
21+
const ast = template.ast(`
22+
({env: ${JSON.stringify(generateEnvObject("test"))}})
23+
`);
24+
return {
25+
visitor: {
26+
MetaProperty(path, state) {
27+
path.replaceWith(ast);
28+
},
29+
},
30+
};
31+
};

0 commit comments

Comments
 (0)