UNPKG

imagenarium

Version:

Use to optimize, handler formats and crop images

18 lines (15 loc) 452 B
'use strict'; /*jshint asi: true*/ var testLib = require('./utils/test-lib') , test = require('tap').test , baseUrl = 'http://zeptojs.com/' test('zepto', function (t) { var shimConfig = { zepto : { exports: '$' } } t.plan(1) testLib(t, { name: 'zepto.min.js' , test: function (t, resolved) { t.equals(resolved.param({ one: 1, two: 2}), 'one=1&two=2', 'shims zepto') } , shimConfig: shimConfig , baseUrl: baseUrl }) });