mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-09 04:02:35 +00:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
import { Context } from '@deepseek-ai/cordis'
|
|
import { describe, expect, it } from 'vitest'
|
|
import { apply as nodeApply } from '../src/index.ts'
|
|
|
|
describe('node apply tail', () => {
|
|
it('tolerates a Host without settings', () => {
|
|
expect(() => { nodeApply(new Context()) }).not.toThrow()
|
|
})
|
|
})
|