mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
import { META } from './env'
|
|
|
|
describe('env', () => {
|
|
it('has correct default values', () => {
|
|
expect(META).toEqual({
|
|
BASE_URL: 'http://localhost:3000',
|
|
DEFAULT_AUTHOR: 'IT Team 4 Change',
|
|
DEFAULT_DESCRIPTION: 'IT4C Frontend Boilerplate',
|
|
DEFAULT_TITLE: 'IT4C',
|
|
})
|
|
})
|
|
})
|