Skip to content

Commit

Permalink
chore: try local e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Aug 9, 2024
1 parent 3408a24 commit 566497d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions e2e-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// Have to run "npm run test:e2e" manually before a release.

const spawn = require('cross-spawn');
const os = require('os');
const fs = require('fs');
const path = require('path');
const test = require('ava');
Expand All @@ -23,7 +22,7 @@ const allSkeletons = possibleFeatureSelections(questions);

const isWin32 = process.platform === 'win32';

const folder = path.join(os.tmpdir(), 'test-skeletons');
const folder = path.join(__dirname, 'test-skeletons');
console.log('-- cleanup ' + folder);
fs.rmSync(folder, {recursive: true, force: true});
fs.mkdirSync(folder);
Expand Down

0 comments on commit 566497d

Please sign in to comment.