diff --git a/packages/marble-input-matrix/test/InputMatrix.node.js b/packages/marble-input-matrix/test/InputMatrix.node.js new file mode 100644 index 0000000..8917d7c --- /dev/null +++ b/packages/marble-input-matrix/test/InputMatrix.node.js @@ -0,0 +1,13 @@ +/** + * @jest-environment node + */ + +import Component from 'metal-component'; +import InputMatrix from '../src/InputMatrix'; + +describe('InputMatrix.node', () => { + it('should not fail on the server side', () => { + const inputMatrix = Component.renderToString(InputMatrix); + expect(inputMatrix).not.toBeNull(); + }); +});