import { describe, test, expect } from '@jest/globals' import { forbidRandomness } from './random' describe('forbidRandomness', () => { test(' throws', () => { expect(forbidRandomness).toThrow() }) })