import { DataSource } from "../../../src" import { closeTestingConnections, createTestingConnections, reloadTestingDatabases, } from "../../utils/test-utils" import { User } from "./entity/User" describe("github issues > #2006 Columns are being set to null after saving the entity", () => { let connections: DataSource[] before( async () => (connections = await createTestingConnections({ entities: [__dirname + "/entity/*{.js,.ts}"], enabledDrivers: ["mysql"], })), ) beforeEach(() => reloadTestingDatabases(connections)) after(() => closeTestingConnections(connections)) it("should be able to find by boolean find", () => Promise.all( connections.map(async (connection) => { const user = new User() user.token = "sometoken" await connection.manager.save(user) user.token.should.be.equal("sometoken") }), )) })