import { btoa } from '@whatwg-node/fetch';
it('should work as expected', () => {
  expect(btoa('Hello, world!')).toBe('SGVsbG8sIHdvcmxkIQ==');
});
