import "reflect-metadata"; import {Connection} from "../../../src/connection/Connection"; import {closeTestingConnections, createTestingConnections} from "../../utils/test-utils"; describe("github issues > #1839 Charset and collation not being carried to JoinTable when generating migration", () => { let connections: Connection[]; before(async () => { connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], enabledDrivers: ["mysql"], schemaCreate: true, dropSchema: true, }); }); after(() => closeTestingConnections(connections)); it("should carry charset and collation from original column in to junction column", () => Promise.all(connections.map(async connection => { const queryRunner = connection.createQueryRunner(); const table = await queryRunner.getTable("post_categories_category"); table!.findColumnByName("postId")!.charset!.should.be.equal("utf8"); table!.findColumnByName("postId")!.collation!.should.be.equal("utf8_unicode_ci"); table!.findColumnByName("categoryId")!.charset!.should.be.equal("ascii"); table!.findColumnByName("categoryId")!.collation!.should.be.equal("ascii_general_ci"); await queryRunner.release(); }))); });