import "reflect-metadata"; import {closeTestingConnections, createTestingConnections, reloadTestingDatabases} from "../../../utils/test-utils"; import {Connection} from "../../../../src/connection/Connection"; import {Post} from "./entity/Post"; import {Category} from "./entity/Category"; describe("persistence > cascade operations with custom name", () => { let connections: Connection[]; before(async () => connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], })); beforeEach(() => reloadTestingDatabases(connections)); after(() => closeTestingConnections(connections)); describe("cascade update", function() { it("should remove relation", () => Promise.all(connections.map(async connection => { // create first post and category and save them const post1 = new Post(); post1.title = "Hello Post #1"; const category1 = new Category(); category1.name = "Category saved by cascades #1"; category1.posts = [post1]; await connection.manager.save(category1); category1.posts = []; await connection.manager.save(category1); // now check const posts = await connection.manager.find(Post, { join: { alias: "post", leftJoinAndSelect: { category: "post.category" } }, order: { id: "ASC" } }); posts.should.be.eql([{ id: 1, title: "Hello Post #1", category: null }]); }))); }); });