Add api- prefix to spec

This commit is contained in:
Kevin Sawicki 2016-03-04 14:58:34 -08:00
parent 8f820e09be
commit 8215d661ca

View file

@ -0,0 +1,15 @@
'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());
});
});
});