/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/errors/decline/index.js
14 строк
397 B
Tobias Koppers
use parser state instead of module to store harmony/dynamic exports state
07 дек 2019, 03:04
07 дек 2019, 03:04
3b4a745
Код
Авторство
О чём код?
import a from "./a"; it("should abort when module is declined by parent", (done) => { expect(a).toBe(1); NEXT(require("../../update")((err) => { try { expect(err.message).toMatch(/Aborted because of declined dependency: \.\/b\.js in \.\/a\.js/); expect(err.message).toMatch(/Update propagation: \.\/c\.js -> \.\/b\.js -> \.\/a\.js/); done(); } catch(e) { done(e); } })); });