AugurProject/augur-ui

View on GitHub
src/modules/markets/actions/update-market-creator-fees.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import {
  UPDATE_MARKET_CREATOR_FEES,
  updateMarketCreatorFees
} from "modules/markets/actions/market-creator-fees-management";

describe("modules/markets/actions/market-creator-fees-management.js", () => {
  const data = { 0x0000000000000000000000000000000000000001: "a big number" };

  const actual = updateMarketCreatorFees(data);

  const expected = {
    type: UPDATE_MARKET_CREATOR_FEES,
    data: { marketCreatorFees: data }
  };

  test("should return the expected object", () => {
    expect(actual).toEqual(expected);
  });
});