You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/test/image.js

22 lines
551 B
JavaScript

'use strict';
var assert = require('assert');
var path = require('path');
var db = require('./mocks/databasemock');
var image = require('../src/image');
var file = require('../src/file');
describe('image', function () {
it('should normalise image', function (done) {
image.normalise(path.join(__dirname, 'files/normalise.jpg'), '.jpg', function (err) {
assert.ifError(err);
file.exists(path.join(__dirname, 'files/normalise.jpg.png'), function (err, exists) {
assert.ifError(err);
assert(exists);
done();
});
});
});
});