Skip to content

Commit

Permalink
Use chai named import
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima authored Dec 7, 2024
1 parent a59b6b1 commit e5a378f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
*/

import { before, describe, it, expect as jestExpect } from 'esmocha';
import * as chai from 'chai';
const { expect } = chai;
import { use as chaiUse, expect } from 'chai';
import sinonChai from 'sinon-chai';

chai.use(sinonChai);
chaiUse(sinonChai);

import { JDLEntity } from '../../core/models/index.js';
import { convert } from './jdl-to-json-basic-entity-converter.js';
Expand Down

0 comments on commit e5a378f

Please sign in to comment.