UNPKG

@furystack/core

Version:
10 lines (8 loc) 263 B
import { describe, expect, it } from 'vitest' import { AuthorizationError } from './index.js' describe('AuthorizationError', () => { it('Should be constructed', () => { const error = new AuthorizationError() expect(error).toBeInstanceOf(Error) }) })