mirror of
https://github.com/xodio/xod.git
synced 2026-03-25 10:06:55 +01:00
11 lines
256 B
JavaScript
11 lines
256 B
JavaScript
import { assert } from 'chai';
|
|
import initialState from '../app/state';
|
|
|
|
describe('Initial state', () => {
|
|
describe('node types', () => {
|
|
it('cound must be > 0', () => {
|
|
assert(Object.keys(initialState.nodeTypes).length > 0);
|
|
});
|
|
});
|
|
});
|