(id: string)
| 6 | let e: GridStackEngine; |
| 7 | let ePriv: any; // cast engine for private vars access |
| 8 | let findNode = function(id: string) { |
| 9 | return e.nodes.find(n => n.id === id); |
| 10 | }; |
| 11 | |
| 12 | it('should exist setup function.', () => { |
| 13 | expect(GridStackEngine).not.toBeNull(); |
no test coverage detected