Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
xit('should match sort the builders by tag groups', function() {
createController();
const _builders = FIXTURES['builders.fixture.json'].builders;
for (let builder of Array.from(_builders)) {
builder.hasBuild = true;
}
scope.c.sortBuildersByTags(_builders);
expect(_builders.length).toBe(scope.c.builders.length);
expect(scope.c.tag_lines.length).toEqual(5);
});
});