/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/conditional-runtime/accept-conditional/module.js
9 строк
144 B
Tobias Koppers
fix hot test cases for async-node
27 окт 2020, 13:43
27 окт 2020, 13:43
2b964c6
Код
Авторство
О чём код?
import { f } from "./shared"; export function test(next, done) { expect(f()).toBe(42); next(() => { expect(f()).toBe(43); done(); }); }