admin管理员组文章数量:1350100
In my current code, I use process.cwd()
to get the current working directory and then load some file (like config file).
Below I will show the concept of my code and how I test it.
This is the directory structure:
├── index.js
└── test
├── index.test.js
└── config.js
index.js
const readRootConfig = function() {
const dir = process.cwd();
console.log(dir); // show the working dir
const config = require(`${dir}/config.js`);
}
And then I use jest to test this file.
index.test.js
import readRootConfig '../index';
it('test config', () => {
readRootConfig();
})
After run the test, console
of dir is ./
(real output is absolute path, I just show the relative path in this demo)
But what I hope the output of dir is ./test
.
Is there any config to make jest use the test file folder
to be the process.cwd()
folder?
I am thinking one of the solution is pass dir path
as a parameter, like:
index.js
const readRootConfig = function(dir) {
console.log(dir); // show the working dir
const config = require(`${dir}/config.js`);
}
But I am not pretty like this solution, cause this method is to adapt to the test.
So any suggestion? thanks.
In my current code, I use process.cwd()
to get the current working directory and then load some file (like config file).
Below I will show the concept of my code and how I test it.
This is the directory structure:
├── index.js
└── test
├── index.test.js
└── config.js
index.js
const readRootConfig = function() {
const dir = process.cwd();
console.log(dir); // show the working dir
const config = require(`${dir}/config.js`);
}
And then I use jest to test this file.
index.test.js
import readRootConfig '../index';
it('test config', () => {
readRootConfig();
})
After run the test, console
of dir is ./
(real output is absolute path, I just show the relative path in this demo)
But what I hope the output of dir is ./test
.
Is there any config to make jest use the test file folder
to be the process.cwd()
folder?
I am thinking one of the solution is pass dir path
as a parameter, like:
index.js
const readRootConfig = function(dir) {
console.log(dir); // show the working dir
const config = require(`${dir}/config.js`);
}
But I am not pretty like this solution, cause this method is to adapt to the test.
So any suggestion? thanks.
Share Improve this question asked Aug 19, 2017 at 4:33 Chen-TaiChen-Tai 3,4733 gold badges24 silver badges34 bronze badges2 Answers
Reset to default 4Maybe you want to make a module that can know what file required it, you can use module.parent
. It is the module that first required this one. And then you can use path.dirname
to get the directory of the file.
So index.js
should be like this
const path = require('path')
const readRootConfig = function() {
const dir = path.dirname(module.parent.filename)
console.log(dir); // show the working dir
const config = require(`${dir}/config.js`);
}
__dirname
does the trick nicely as module.parent
is now deprecated as of Node v19.6.0
- https://nodejs/docs/latest/api/globals.html#__dirname
本文标签: javascriptjest processcwd() to get the test file directoryStack Overflow
版权声明:本文标题:javascript - jest process.cwd() to get the test file directory - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743871184a2553499.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论