Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Jul 9, 2022
1 parent 4bf5607 commit 8a6c246
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/integration/__tests__/cache.js
Expand Up @@ -21,9 +21,6 @@ describe("--cache option", () => {
const nonDefaultCacheFileName = ".non-default-cache-file";
const nonDefaultCacheFilePath = path.join(dir, nonDefaultCacheFileName);

const nonDefaultCacheDirName = "non-default-cache-dir";
const nonDefaultCacheDirPath = path.join(dir, nonDefaultCacheDirName);

let contentA;
let contentB;

Expand All @@ -35,7 +32,6 @@ describe("--cache option", () => {
afterEach(async () => {
rimraf.sync(path.join(dir, "node_modules"));
rimraf.sync(nonDefaultCacheFilePath);
rimraf.sync(nonDefaultCacheDirPath);
await fs.writeFile(path.join(dir, "a.js"), contentA);
await fs.writeFile(path.join(dir, "b.js"), contentB);
});
Expand Down

0 comments on commit 8a6c246

Please sign in to comment.