import { TestBed, ComponentFixture } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { CodeHighlighter } from './codehighlighter'; import { NoopAnimationsModule } from '@angular/platform-browser/animations'; import { Component } from '@angular/core'; @Component({ template: `
.ui-table table {
border-collapse:collapse;
width: 100%;
table-layout: fixed;
}
`
})
class TestCodeHighlighterComponent {
}
describe('CodeHighlighter', () => {
let codehighlighter: CodeHighlighter;
let fixture: ComponentFixture