/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/runtime/circular/index.js
10 строк
214 B
Florent Cailhol
Migrate HotTestCases to Jest
25 янв 2018, 01:31
25 янв 2018, 01:31
998f768
Код
Авторство
О чём код?
import a from "./a"; it("should not throw on circular dependencies", (done) => { expect(a).toBe(1); module.hot.accept("./a", () => { expect(a).toBe(2); done(); }); NEXT(require("../../update")(done)); });