UNPKG

ipsased

Version:

UI toolkit monorepo containing a React component library, UI utilities, a drag-and-drop library, and more

13 lines (10 loc) 331 B
// @vitest-environment happy-dom import { describe, expect, it } from 'vitest'; import webcrypto from './browser.js'; describe('@acusti/webcrypto', () => { describe('browser.ts', () => { it('exports node:crypto’s webcrypto object', () => { expect(webcrypto).toBe(window.crypto); }); }); });