Skip to content

Commit

Permalink
fixup! Builder supports node-ESM packages
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Oct 17, 2022
1 parent 6983c7f commit 70d8e58
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/utilities/find-build-file-test.js
Expand Up @@ -3,6 +3,7 @@
const expect = require('../../chai').expect;
const fs = require('fs-extra');
const os = require('os');
const path = require('path');
const findBuildFile = require('../../../lib/utilities/find-build-file');

describe('find-build-file', function () {
Expand All @@ -11,7 +12,7 @@ describe('find-build-file', function () {
let ROOT = process.cwd();

beforeEach(function () {
tmpPath = fs.mkdtempSync(os.tmpdir());
tmpPath = fs.mkdtempSync(path.join(os.tmpdir(), 'find-build-file-test'));
process.chdir(tmpPath);
});

Expand Down

0 comments on commit 70d8e58

Please sign in to comment.