mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-08-28 05:24:29 +00:00
Move docs to repo
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
const chai = require('chai');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
const base = path.join(__dirname, '..', 'docs');
|
||||
|
||||
const supportDevices = require('../docgen/supported-devices');
|
||||
const integratingWithHomeassistant = require('../docgen/integrating-with-homeassistant');
|
||||
|
||||
describe('Docgen', () => {
|
||||
it('supported-devices.md should be up-to-date.', () => {
|
||||
const actual = fs.readFileSync(path.join(base, 'supported-devices.md')).toString();
|
||||
chai.assert.strictEqual(
|
||||
supportDevices,
|
||||
actual,
|
||||
'supported-devices.md is not up-to-date, forgot to run npm run docgen?'
|
||||
);
|
||||
});
|
||||
|
||||
it('integrating-with-homeassistant.md should be up-to-date.', () => {
|
||||
const actual = fs.readFileSync(path.join(base, 'integrating-with-homeassistant.md')).toString();
|
||||
chai.assert.strictEqual(
|
||||
integratingWithHomeassistant,
|
||||
actual,
|
||||
'supported-devices.md is not up-to-date, forgot to run npm run docgen?'
|
||||
);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user