summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/palette/palette-element/palette-element.component.spec.ts
blob: 64ed45ba9cb281f8bf4d4e3e2e5f5c8644b29280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {async, ComponentFixture} from "@angular/core/testing";
import {ConfigureFn, configureTests} from "../../../../../../jest/test-config.helper";
import {NO_ERRORS_SCHEMA} from "@angular/core";
import {PaletteElementComponent} from "./palette-element.component";
import {ResourceNamePipe} from "../../../../pipes/resource-name.pipe";

describe('palette element component', () => {

    let fixture: ComponentFixture<PaletteElementComponent>;

    beforeEach(
        async(() => {
            const configure: ConfigureFn = testBed => {
                testBed.configureTestingModule({
                    declarations: [PaletteElementComponent, ResourceNamePipe],
                    imports: [],
                    schemas: [NO_ERRORS_SCHEMA]
                });
            };

            configureTests(configure).then(testBed => {
                fixture = testBed.createComponent(PaletteElementComponent);
            });
        })
    );

    it('should match current snapshot of palette element component', () => {
        expect(fixture).toMatchSnapshot();
    });
});