Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-wasp committed Jun 17, 2019
1 parent 4eb04cd commit 9a11615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Client as dbClient } from "pg";
import { Network } from "stellar-base";
import { createConnection } from "typeorm";
import { HorizonAssetsDataSource } from "../../src/datasource/horizon";
import { Account, AccountData, Offer } from "../../src/orm/entities";
import { Account, AccountData, Offer, TrustLine } from "../../src/orm/entities";
import schema from "../../src/schema";
import logger from "../../src/util/logger";
import * as secrets from "../../src/util/secrets";
Expand Down Expand Up @@ -55,7 +55,7 @@ describe("Integration tests", () => {
username: secrets.DBUSER,
password: secrets.DBPASSWORD,
database: secrets.DB,
entities: [Account, AccountData, Offer],
entities: [Account, AccountData, Offer, TrustLine],
synchronize: false,
logging: process.env.DEBUG_SQL !== undefined
});
Expand Down

0 comments on commit 9a11615

Please sign in to comment.