in your commonJS module try something like that:
const importExpect = async () => await import('chai').then((chai) => chai.expect);
(async () => {
const expect = await importExpect()
// your old tests
expect('true').to.equal('true');
// your old tests
})()