Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
13 lines
525 B
TypeScript
13 lines
525 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { Context } from '@deepseek-ai/cordis'
|
|
import InvariantRegistry from '@deepseek-ai/dsh-invariants'
|
|
import * as UserIdInvariant from '@deepseek-ai/dsh-anonymous-user-id/invariant'
|
|
|
|
describe('invariant companion', () => {
|
|
it('registers the package ownership with an empty installer', async () => {
|
|
const ctx = new Context()
|
|
await ctx.plugin(InvariantRegistry, { enabled: true })
|
|
await expect(ctx.plugin(UserIdInvariant).await()).resolves.toBeDefined()
|
|
})
|
|
})
|