electron/spec/api-native-image-spec.js

18 lines
599 B
JavaScript
Raw Normal View History

'use strict';
const assert = require('assert');
const nativeImage = require('electron').nativeImage;
const path = require('path');
describe('nativeImage module', () => {
describe('createFromPath(path)', () => {
it('normalizes the path', () => {
const nonAbsolutePath = `${path.join(__dirname, 'fixtures', 'api')}${path.sep}..${path.sep}${path.join('assets', 'logo.png')}`;
const image = nativeImage.createFromPath(nonAbsolutePath);
assert(!image.isEmpty());
2016-03-07 17:28:08 +00:00
assert.equal(image.getSize().height, 190);
assert.equal(image.getSize().width, 538);
});
});
});