persona-community-5/.pnpm-store/v3/files/69/134d09db69ae011fbd3ef087bf8bfe8a718f5c31e3870f18020ed4c1ece199a6fc4fde95669c526fa58cc760b2a75f548dceda1284e528edc933fa4a73449a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
181 B
Plaintext

/**
* @jest-environment jsdom
*/
import { isBrowser } from '../env';
describe('isBrowser', () => {
it('should be browser', () => {
expect(isBrowser).toBe(true);
});
});