Skip to content

Commit

Permalink
Merge pull request #146 from testing-library/updates
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
Gpx committed Jul 20, 2019
2 parents 956fc89 + 0810951 commit 5384a0a
Show file tree
Hide file tree
Showing 7 changed files with 1,610 additions and 828 deletions.
2 changes: 1 addition & 1 deletion __tests__/react/click.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { render, cleanup } from "@testing-library/react";
import "jest-dom/extend-expect";
import "@testing-library/jest-dom/extend-expect";
import userEvent from "../../src";

afterEach(cleanup);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/react/dblclick.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { render, cleanup } from "@testing-library/react";
import "jest-dom/extend-expect";
import "@testing-library/jest-dom/extend-expect";
import userEvent from "../../src";

afterEach(cleanup);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/react/selectoptions.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { render, cleanup, fireEvent } from "@testing-library/react";
import "jest-dom/extend-expect";
import "@testing-library/jest-dom/extend-expect";
import userEvent from "../../src";

afterEach(cleanup);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/react/type.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { cleanup, render, wait } from "@testing-library/react";
import "jest-dom/extend-expect";
import "@testing-library/jest-dom/extend-expect";
import userEvent from "../../src";

afterEach(cleanup);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/vue/click.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render, cleanup } from "@testing-library/vue";
import "jest-dom/extend-expect";
import "@testing-library/jest-dom/extend-expect";
import userEvent from "../../src";

afterEach(cleanup);
Expand Down

0 comments on commit 5384a0a

Please sign in to comment.