Skip to content

Commit

Permalink
test: Pull correct entity in test for typeorm#6633
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotjames authored and Svetlozar committed Jan 12, 2021
1 parent b4e2e24 commit fd92040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/github-issues/6633/issue-6633.ts
Expand Up @@ -2,14 +2,14 @@ import "reflect-metadata";
import { expect } from "chai";
import { Connection } from "../../../src";
import { closeTestingConnections, createTestingConnections, reloadTestingDatabases } from "../../utils/test-utils";
import { Post } from "../4440/entity/Post";
import { Test } from "./entity/Test";

describe("github issues > #6633 Fulltext indices continually dropped & re-created", () => {

let connections: Connection[];
before(async () => {
connections = await createTestingConnections({
entities: [Post],
entities: [Test],
schemaCreate: true,
dropSchema: true
});
Expand Down

0 comments on commit fd92040

Please sign in to comment.