@accounter/server
Version:
Accounter GraphQL server
9 lines • 341 B
JavaScript
import { describe, it, expect } from 'vitest';
import { AUTH_CONTEXT_V2 } from '../tokens';
describe('AUTH_CONTEXT_V2 Token', () => {
it('should be defined', () => {
expect(AUTH_CONTEXT_V2).toBeDefined();
expect(AUTH_CONTEXT_V2.toString()).toContain('AUTH_CONTEXT_V2');
});
});
//# sourceMappingURL=tokens.test.js.map