Skip to content

Commit

Permalink
change temp path in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko committed Sep 22, 2023
1 parent 4353900 commit c448b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/configuration/configuration_parser_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var tempDir = null;
describe('Configuration parsing tests', function () {

before(async function () {
tempDir = await fsPromises.mkdtemp(os.tmpdir());
tempDir = await fsPromises.mkdtemp(path.join(os.tmpdir(), 'conf_parse_tests_'));
});

after(async function () {
Expand Down

0 comments on commit c448b60

Please sign in to comment.