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