summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/helpers/isBase64URLString.test.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-28 10:15:46 -0700
committerGitHub <noreply@github.com>2022-07-28 10:15:46 -0700
commit9e260901cf3ae69b40f50b7a1fd4ac5388186a08 (patch)
treef7fe58214818bae6bec73a759087cf3d4a53c1a7 /packages/server/src/helpers/isBase64URLString.test.ts
parent522f00d9ae613ff1f51f0c1aca85a6ae129381c5 (diff)
parent2b9f082fc129566b97ec6f72cf390c25f55647ac (diff)
Merge pull request #232 from MasterKale/linting-catch-up
Run `npm run lint`
Diffstat (limited to 'packages/server/src/helpers/isBase64URLString.test.ts')
-rw-r--r--packages/server/src/helpers/isBase64URLString.test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/helpers/isBase64URLString.test.ts b/packages/server/src/helpers/isBase64URLString.test.ts
index 545ff93..358c420 100644
--- a/packages/server/src/helpers/isBase64URLString.test.ts
+++ b/packages/server/src/helpers/isBase64URLString.test.ts
@@ -1,16 +1,16 @@
import { isBase64URLString } from './isBase64URLString';
test('should return true when input is base64URLString', () => {
- const actual = isBase64URLString("U2ltcGxlV2ViQXV0aG4")
+ const actual = isBase64URLString('U2ltcGxlV2ViQXV0aG4');
expect(actual).toEqual(true);
});
test('should return false when input is not base64URLString', () => {
- const actual = isBase64URLString("U2ltcGxlV2ViQXV0aG4+")
+ const actual = isBase64URLString('U2ltcGxlV2ViQXV0aG4+');
expect(actual).toEqual(false);
});
test('should return false when input is blank', () => {
- const actual = isBase64URLString("")
+ const actual = isBase64URLString('');
expect(actual).toEqual(false);
});