mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
13 lines
271 B
TypeScript
13 lines
271 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
import { META } from './env'
|
|
|
|
describe('env', () => {
|
|
it('has correct default values', () => {
|
|
expect(META).toEqual({
|
|
DEFAULT_TITLE: 'IT4C',
|
|
DEFAULT_DESCRIPTION: 'IT4C Frontend Boilerplate',
|
|
})
|
|
})
|
|
})
|