UNPKG

cli-locale

Version:

Utilities for working with LC environment variables

13 lines (11 loc) 325 B
var expect = require('chai').expect; var spanish = 'es'; var lc = require('../..'), find = lc.find; describe('cli-locale:', function() { it('should return correct default language', function(done) { lc(spanish); var lang = lc.language; expect(lang).to.be.a('string').that.equals(spanish); done(); }); })