Skip to content

Commit

Permalink
test(fix): fix test error via update rimraf import
Browse files Browse the repository at this point in the history
  • Loading branch information
george43g committed May 9, 2024
1 parent b44ab77 commit a9bfa2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/exportFunctions.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable jest/no-hooks */
import fs from 'fs-extra';
import rimfar from 'rimraf';
import { rimrafSync } from 'rimraf';
import { resolve } from 'path';
import tmp from 'tmp';
import * as bff from '../src/export-functions';
Expand Down Expand Up @@ -40,7 +40,7 @@ describe('exportFunctions() function exporter test suite', () => {
});

afterAll(() => {
rimfar.sync(tempFuncDir);
rimrafSync(tempFuncDir);
tmp.setGracefulCleanup();
});

Expand Down

0 comments on commit a9bfa2f

Please sign in to comment.