UNPKG

quasqui

Version:

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

10 lines (8 loc) 295 B
import { I18CLILanguageDetector } from '../src'; describe('Test I18CLILanguageDetector', () => { test('should return language', () => { const detector = new I18CLILanguageDetector(); const language = detector.detect(); expect(typeof language === 'string').toBeTruthy(); }); });