Skip to content

Commit

Permalink
refactor: rename actions.js -> utils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Nov 10, 2023
1 parent dc8ed9e commit 05bcd23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { importTaxonomy } from './actions';
import { importTaxonomy } from './utils';
import { importNewTaxonomy } from './api';

const mockAddEventListener = jest.fn();
Expand All @@ -11,7 +11,7 @@ jest.mock('./api', () => ({
importNewTaxonomy: jest.fn().mockResolvedValue({}),
}));

describe('import taxonomy actions', () => {
describe('import taxonomy functions', () => {
let createElement;
let appendChild;
let removeChild;
Expand Down

0 comments on commit 05bcd23

Please sign in to comment.