mirror of
https://github.com/langgenius/dify.git
synced 2026-03-05 23:57:06 +08:00
13 lines
393 B
TypeScript
13 lines
393 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { ValidatedStatus } from './declarations'
|
|
|
|
describe('declarations', () => {
|
|
describe('ValidatedStatus', () => {
|
|
it('should expose expected status values', () => {
|
|
expect(ValidatedStatus.Success).toBe('success')
|
|
expect(ValidatedStatus.Error).toBe('error')
|
|
expect(ValidatedStatus.Exceed).toBe('exceed')
|
|
})
|
|
})
|
|
})
|