37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
|
'use strict';
|
||
|
var test = require('tape'),
|
||
|
Vinyl = require('vinyl'),
|
||
|
gulpUglify = require('../'),
|
||
|
uglifyjs = require('uglify-js');
|
||
|
|
||
|
var testContentsInput = '"use strict"; (function(console, first, second) { console.log(first + second) }(5, 10))';
|
||
|
var testContentsExpected = uglifyjs.minify(testContentsInput, {fromString: true}).code;
|
||
|
|
||
|
var testFile1 = new Vinyl({
|
||
|
cwd: "/home/terin/broken-promises/",
|
||
|
base: "/home/terin/broken-promises/test",
|
||
|
path: "/home/terin/broken-promises/test/test1.js",
|
||
|
contents: new Buffer(testContentsInput)
|
||
|
});
|
||
|
|
||
|
test('should minify files', function(t) {
|
||
|
t.plan(7);
|
||
|
|
||
|
var stream = gulpUglify();
|
||
|
|
||
|
stream.on('data', function(newFile) {
|
||
|
t.ok(newFile, 'emits a file');
|
||
|
t.ok(newFile.path, 'file has a path');
|
||
|
t.ok(newFile.relative, 'file has relative path information');
|
||
|
t.ok(newFile.contents, 'file has contents');
|
||
|
|
||
|
t.ok(newFile instanceof Vinyl, 'file is Vinyl');
|
||
|
t.ok(newFile.contents instanceof Buffer, 'file contents are a buffer');
|
||
|
|
||
|
t.equals(String(newFile.contents), testContentsExpected);
|
||
|
});
|
||
|
|
||
|
stream.write(testFile1);
|
||
|
stream.end();
|
||
|
});
|