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 committed Oct 9, 2020
1 parent 0280cdc commit 645176f
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 645176f

Please sign in to comment.