mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 04:45:12 +00:00
* feat(eval): add claude-generated run report artifact * fix(eval): install claude code cli for CI evals * fix(eval): bypass claude code tool permissions * Eval metrics configs (#932) * feat(eval): add agisdk comparison metrics configs * fix(eval): keep cdp crashes from aborting run
13 lines
402 B
TypeScript
Vendored
13 lines
402 B
TypeScript
Vendored
import { describe, expect, it } from 'bun:test'
|
|
import { shouldAutoOpenDashboard } from '../../src/dashboard/server'
|
|
|
|
describe('dashboard server', () => {
|
|
it('does not auto-open the dashboard in CI', () => {
|
|
expect(shouldAutoOpenDashboard({ CI: 'true' })).toBe(false)
|
|
})
|
|
|
|
it('auto-opens the dashboard outside CI by default', () => {
|
|
expect(shouldAutoOpenDashboard({})).toBe(true)
|
|
})
|
|
})
|