/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/deprecated/context/context-tests.js
12 строк
365 B
Gabriel Grubba
depracation of context
14 сен 2023, 20:46
14 сен 2023, 20:46
2af20a3
Код
Авторство
О чём код?
import { Tinytest } from "meteor/tinytest"; import { Slot } from "meteor/context"; Tinytest.add('context - basic Slot usage', function (test) { const slot = new Slot(); test.equal(slot.hasValue(), false); slot.withValue(123, () => { test.equal(slot.hasValue(), true); test.equal(slot.getValue(), 123); }); test.equal(slot.hasValue(), false); });