UNPKG

linked-list-lib

Version:

This package contain some possibilities of implementations of linked lists

8 lines (7 loc) 248 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); test('Testing Data interface', () => { let data = { name: 'test' }; expect(data).toHaveProperty('name', 'test'); expect(data).not.toHaveProperty('other'); });