Skip to content

Commit f95b954

Browse files
committed
chore(spec): add rimraf --glob option to message int spec
1 parent b4d0568 commit f95b954

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/message.integration.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ describe('FFI integration test for the Message Consumer API', function () {
4646
const bytes: Buffer = zlib.gzipSync(secret);
4747

4848
before(function () {
49-
rimraf.sync(path.join(__dirname, '__testoutput__', 'message-consumer*'));
49+
rimraf.sync(path.join(__dirname, '__testoutput__', 'message-consumer*'), {
50+
glob: true,
51+
});
5052
});
5153

5254
beforeEach(function () {

0 commit comments

Comments
 (0)