UNPKG

@axa-fr/oidc-client-service-worker

Version:

OpenID Connect & OAuth authentication service worker

11 lines (8 loc) 245 B
import { describe, expect, it } from 'vitest'; import { countLetter } from '..'; describe('strings', () => { it('can count instance of char', () => { const result = countLetter('token.type.z', '.'); expect(result).toBe(2); }); });