Skip to content

Commit

Permalink
Merge pull request typeorm#3011 from amaranth/fix_running_tests
Browse files Browse the repository at this point in the history
Run all tests, not just the one for typeorm#2800
  • Loading branch information
Kononnable committed Oct 29, 2018
2 parents b8145f3 + 17dc962 commit c56e605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/github-issues/2800/issue-2800.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe("github issues > #2800 - Can't override embedded entities in STI implem

after(() => closeTestingConnections(connections));

it.only("should be able to save entity with embedded entities overriding", () => Promise.all(connections.map(async connection => {
it("should be able to save entity with embedded entities overriding", () => Promise.all(connections.map(async connection => {
await connection.manager.save(Car, connection.manager.create(Car, {
engine: {
horsePower: 42,
Expand All @@ -32,4 +32,4 @@ describe("github issues > #2800 - Can't override embedded entities in STI implem
}));
})));

});
});

0 comments on commit c56e605

Please sign in to comment.