mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-05 15:19:02 +02:00
2bfb55a305
GitOrigin-RevId: 9272720e0f6865c54257c43bd98d8e6003251aa2
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
import esmock from 'esmock'
|
|
const modulePath = new URL(
|
|
'../../../../app/src/Features/Referal/ReferalController.js',
|
|
import.meta.url
|
|
).pathname
|
|
|
|
describe('Referal controller', function () {
|
|
beforeEach(async function () {
|
|
this.controller = await esmock.strict(modulePath, {})
|
|
})
|
|
})
|