Un skip() in-use tests

pull/1048/head
Rick Carlino 2018-11-17 15:06:26 -06:00
parent c680d8cf4e
commit 4a2b53a8ac
3 changed files with 6 additions and 2 deletions

View File

@ -97,6 +97,7 @@
"which": "1.3.1"
},
"devDependencies": {
"jest-skipped-reporter": "0.0.4",
"webpack-cli": "^3.1.2"
},
"jest": {
@ -141,6 +142,10 @@
"collectCoverageFrom": [
"webpack/**/*.{ts,tsx}"
],
"reporters": [
"default",
"jest-skipped-reporter"
],
"coverageReporters": [
"html",
"json",

View File

@ -32,7 +32,6 @@ describe("<RegimenListItem/>", () => {
});
it("shows in-use indicator", () => {
pending("Obvous breakage while I change everything. WIP");
const props = fakeProps();
const wrapper = render(<RegimenListItem {...props} />);
expect(wrapper.find(".in-use").length).toEqual(1);

View File

@ -71,7 +71,7 @@ describe("<SequencesList />", () => {
});
});
fit("shows in-use indicator", () => {
it("shows in-use indicator", () => {
const fakeSequence1 = fakeSequence();
fakeSequence1.body.name = "Sequence 1";
fakeSequence1.body.id = 1;