admin管理员组文章数量:1352031
I want to mock env variables with Vitest. For now, I was able to do it this way:
// test
beforeAll(() => {
import.meta.env.HASHNODE_URL = '';
});
// tested function using an env variable
export const getCanonicalUrl = (slug: string): string => {
return `${process.env.HASHNODE_URL}/${slug}`;
};
However, this a bit cumbersome as I would need to do this in every test suite for the same env variables.
I also tried using setup files
this way but it didn't work:
// vitest.config.ts
/// <reference types="vitest" />
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
setupFiles: ['./test/env-mock.ts'],
},
});
// test/env-mock.ts
beforeAll(() => {
import.meta.env.HASHNODE_URL = '';
});
afterAll(() => {
delete import.meta.env.HASHNODE_URL;
});
And could not get this to work with globalSetup
either:
// In same vitest.config.ts
globalSetup: './test/global-setup.ts',
// test/global-setup.ts
export function setup(): void {
import.meta.env.HASHNODE_URL = '';
}
export function teardown(): void {}
Any ideas? This is with Typescript Node.js project, Vitest 0.33.0.
I want to mock env variables with Vitest. For now, I was able to do it this way:
// test
beforeAll(() => {
import.meta.env.HASHNODE_URL = 'https://blog.IgorKrpenja.';
});
// tested function using an env variable
export const getCanonicalUrl = (slug: string): string => {
return `${process.env.HASHNODE_URL}/${slug}`;
};
However, this a bit cumbersome as I would need to do this in every test suite for the same env variables.
I also tried using setup files
this way but it didn't work:
// vitest.config.ts
/// <reference types="vitest" />
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
setupFiles: ['./test/env-mock.ts'],
},
});
// test/env-mock.ts
beforeAll(() => {
import.meta.env.HASHNODE_URL = 'https://blog.IgorKrpenja.';
});
afterAll(() => {
delete import.meta.env.HASHNODE_URL;
});
And could not get this to work with globalSetup
either:
// In same vitest.config.ts
globalSetup: './test/global-setup.ts',
// test/global-setup.ts
export function setup(): void {
import.meta.env.HASHNODE_URL = 'https://blog.IgorKrpenja.';
}
export function teardown(): void {}
Any ideas? This is with Typescript Node.js project, Vitest 0.33.0.
Share Improve this question asked Jul 26, 2023 at 4:51 IgorIgor 1,2113 gold badges16 silver badges31 bronze badges3 Answers
Reset to default 7Looks like you should use vi.stubEnv instead.
vi.stubEnv
Type: (name: string, value: string) => Vitest
Changes the value of environmental variable onprocess.env
andimport.meta.env
. You can restore its value by callingvi.unstubAllEnvs
.
So use this:
import { vi } from 'vitest'
beforeAll(() => {
vi.stubEnv('HASHNODE_URL', 'https://blog.IgorKrpenja.')
});
afterAll(() => {
vi.unstubAllEnvs();
});
In the vitest config file vitest.config.ts
, you can add a define
object inside defineConfig
like so:
define: {
'import.meta.env.ENV_VARIABLE': JSON.stringify(process.env.ENV_VARIABLE)
}
This way, you don't have to define the variable in every test file.
https://vitejs.dev/config/shared-options.html#envprefix
It was a mistake in configuration. My vitest.config.ts
was inside src
folder. Fixed by moving the file to repo root.
本文标签: javascriptMocking env variables with VitestStack Overflow
版权声明:本文标题:javascript - Mocking .env variables with Vitest - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743875328a2554221.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论