mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 10:28:33 -07:00
22 lines
794 B
JavaScript
22 lines
794 B
JavaScript
const chai = require('chai');
|
|
const proxyquire = require('proxyquire').noPreserveCache();
|
|
const data = () => proxyquire('../lib/util/data.js', {});
|
|
const path = require('path');
|
|
|
|
describe('Data', () => {
|
|
describe('Get path', () => {
|
|
it('Should return correct path', () => {
|
|
const expected = path.normalize(path.join(__dirname, '..', 'data'));
|
|
const actual = data().getPath();
|
|
chai.assert.strictEqual(actual, expected);
|
|
});
|
|
|
|
it('Should return correct path when ZIGBEE2MQTT_DATA set', () => {
|
|
const expected = path.join('var', 'zigbee2mqtt');
|
|
process.env.ZIGBEE2MQTT_DATA = expected;
|
|
const actual = data().getPath();
|
|
chai.assert.strictEqual(actual, expected);
|
|
});
|
|
});
|
|
});
|