Skip to content

Commit

Permalink
test: bump memdisk and disable memdisk quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Aug 16, 2024
1 parent 7d355ed commit 94b78b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 24 deletions.
25 changes: 4 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"eslint-config-sukka": "^4.1.10",
"eslint-formatter-sukka": "^4.1.10",
"fdir": "^6.2.0",
"memdisk": "^1.0.2",
"memdisk": "^1.0.4",
"mocha": "^10.4.0",
"mocha-chai-jest-snapshot": "^1.1.4",
"picocolors": "^1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const tests = (rollupImpl: typeof rollup2 | typeof rollup3 | typeof rollup4, iso
};

describe('rollup-plugin-swc3', () => {
const ramDiskPath = create.sync('rolluppluginswc3test', 64 * 1024 * 1024);
const ramDiskPath = create.sync('rolluppluginswc3test', 64 * 1024 * 1024, { quiet: false });

describe('swc (rollup 2)', () => {
const isolateDir = path.join(ramDiskPath, 'rollup2');
Expand All @@ -394,5 +394,5 @@ describe('rollup-plugin-swc3', () => {
tests(rollup4, isolateDir);
});

after(() => destroy.sync(ramDiskPath));
after(() => destroy.sync(ramDiskPath, { quiet: false }));
});

0 comments on commit 94b78b2

Please sign in to comment.