Files
dashboardAPI/test/basic/structure-module-load.basic.test.js
2026-03-12 16:46:50 +01:00

8 lines
174 B
JavaScript

describe('dashboardAPI basic structure', () => {
it('module load smoke', () => {
expect(() => {
require('../../dashboardapi.js');
}).not.toThrow();
});
});