Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(instrumentation-mysql): fix test for mysql2 v3 (#2168) #2451

Merged
Merged
118 changes: 57 additions & 61 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@types/node": "18.18.14",
"@types/semver": "7.5.8",
"mocha": "7.2.0",
"mysql2": "2.3.3",
"mysql2": "3.11.3",
"nyc": "15.1.0",
"rimraf": "5.0.10",
"semver": "7.6.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ interface Result extends mysqlTypes.RowDataPacket {
solution: number;
}

describe('mysql2@2.x', () => {
describe('mysql2', () => {
let contextManager: AsyncHooksContextManager;
let connection: mysqlTypes.Connection;
let rootConnection: mysqlTypes.Connection;
Expand Down Expand Up @@ -148,7 +148,7 @@ describe('[email protected]', () => {
host,
password,
database,
} as mysqlTypes.PoolClusterOptions);
});
});

afterEach(done => {
Expand Down