Skip to content

Instantly share code, notes, and snippets.

@delianides
Created March 29, 2016 20:06
Show Gist options
  • Save delianides/b641c590d9be7438016c95fa643652af to your computer and use it in GitHub Desktop.
Save delianides/b641c590d9be7438016c95fa643652af to your computer and use it in GitHub Desktop.
import React from "react";
import { expect } from "chai";
import { shallow } from "enzyme";
import Spinner from "./../../../../core/components/loading/Spinner";
describe("Spinner", () => {
it("has the default styles", () => {
const wrapper = shallow(<Spinner />);
console.log(wrapper);
expect(wrapper.contains(<div className="loading"/>)).to.equal(true);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment