Skip to content

Commit

Permalink
fix propagateloader
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhu2000 committed Aug 5, 2019
1 parent d972e0b commit 9a2a0eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/PropagateLoader-tests.tsx
Expand Up @@ -37,7 +37,7 @@ describe("PropagateLoader", () => {
expect(loader.isEmptyRender()).toBe(true);
});

it("renders the correct color based on props", () => {
it("should render the correct color based on props", () => {
let color: string = "#e2e2e2";
loader = mount(<PropagateLoader color={color} />);

Expand All @@ -48,7 +48,7 @@ describe("PropagateLoader", () => {
}
});

it("renders the correct size for the parent div based on props", () => {
it("should render the correct size based on props", () => {
let size: number = 21;
loader = mount(<PropagateLoader size={size} />);

Expand All @@ -63,7 +63,7 @@ describe("PropagateLoader", () => {
}
});

it("renders the css override based on props", () => {
it("should render the css override based on props", () => {
loader = mount(
<PropagateLoader css={"position: absolute; width: 100px; height: 200px; color: blue;"} />
);
Expand Down

0 comments on commit 9a2a0eb

Please sign in to comment.