1import { describe, expect, it } from 'vitest'
2
3describe('runtime environment', () => {
4 it('should work', () => {
5 expect(useRuntimeConfig().app).toMatchInlineSnapshot(`
6 {
7 "baseURL": "/",
8 "buildAssetsDir": "/_nuxt/",
9 "buildId": "test",
10 "cdnURL": "",
11 }
12 `)
13 })
14})