Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should remove duplicate rows', () => {
const compiler = new RemoveDuplicates({
processRows: true
});
const examples = new Examples();
const row = new TableRow();
row.cells.push(new TableCell('hello'));
row.cells.push(new TableCell('world'));
examples.body.push(row);
examples.body.push(row.clone());
expect(examples.body).to.have.lengthOf(2);
compiler._filterRows(examples, {}, {});
expect(examples.body).to.have.lengthOf(1);
});