Closed
Description
Search terms you've used
jsdom, TextEncoder
Impacted package
Which packages do you think might be impacted by the bug ?
- solid-client-authn-browser
- solid-client-authn-node
- solid-client-authn-core
- oidc-client-ext
- Other (please specify): ...
Bug description
importing from @inrupt/solid-client-authn-browser
fails in a jest test using jsdom environment:
Test suite failed to run
ReferenceError: TextEncoder is not defined
3 | */
4 |
> 5 | import { login } from '@inrupt/solid-client-authn-browser';
| ^
6 |
7 | describe('test', () => {
8 | it('should work', () => {
To Reproduce
Run this test:
/**
* @jest-environment jsdom
*/
import { login } from '@inrupt/solid-client-authn-browser';
describe('test', () => {
it('should work', () => {
expect(login).toBeDefined();
});
});
Expected result
Test runs successfully
Actual result
ReferenceError: TextEncoder is not defined
Environment
@inrupt/solid-client-authn-browser: ^1.11.2 => 1.11.2
Additional information
- The problem did not occur with @inrupt/solid-client-authn-browser 1.6.1
- It works fine with
@jest-environment node