/
githubmirror
/
tailwindcss
Обзор
Документация
Войти
/
githubmirror
/
tailwindcss
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.4.19
tests/defaultTheme.test.js
11 строк
333 B
Robin Malfait
Cleanup oxide — Part #2 (#13312)
22 мар 2024, 19:12
Не верифицирован
22 мар 2024, 19:12
44b3b42
Код
Авторство
О чём код?
import theme from '../src/public/default-theme' import configStub from '../stubs/config.full.js' test('the default theme matches the stub', () => { expect(theme).toEqual(configStub.theme) }) test('modifying the default theme does not affect the stub', () => { theme.colors = {} expect(theme).not.toEqual(configStub.theme) })