AugurProject/augur-ui

View on GitHub
src/assertions/login-account-markets.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function(loginAccountMarkets) {
  describe(`loginAccountMarket's shape`, () => {
    expect(loginAccountMarkets).toBeDefined();
    expect(typeof loginAccountMarkets).toBe("object");
  });
}