Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Allow editing metadata for job and pool #514

Merged
merged 5 commits into from
Jun 26, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix specs
  • Loading branch information
timotheeguerin committed Jun 26, 2017
commit a422e26576e8fa93adc37d8e4840400256937abb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { NO_ERRORS_SCHEMA } from "@angular/core";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { By } from "@angular/platform-browser";

Expand All @@ -20,6 +21,7 @@ describe("ApplicationPropertiesComponent", () => {
ApplicationPropertiesComponent, BoolPropertyComponent, PropertyGroupComponent,
PropertyListComponent, TextPropertyComponent,
],
schemas: [NO_ERRORS_SCHEMA],
});

fixture = TestBed.createComponent(ApplicationPropertiesComponent);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Component, DebugElement } from "@angular/core";
import { Component, DebugElement, NO_ERRORS_SCHEMA } from "@angular/core";
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { By } from "@angular/platform-browser";

import { ButtonComponent } from "app/components/base/buttons";
import { PropertyGroupComponent } from "app/components/base/property-list";
import { click } from "test/utils/helpers";

Expand All @@ -28,7 +29,8 @@ describe("PropertyGroupComponent", () => {

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [TestGroupComponent, PropertyGroupComponent],
declarations: [TestGroupComponent, PropertyGroupComponent, ButtonComponent],
schemas: [NO_ERRORS_SCHEMA],
});
fixture = TestBed.createComponent(TestGroupComponent);
de = fixture.debugElement;
Expand Down