UNPKG

quasqui

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

11 lines (9 loc) 214 B
import { hook } from '../src/exports/server'; describe('runtime export', () => { it('should return self after hook', () => { const fn = () => { // empty }; expect(hook(fn)).toBe(fn); }); });