From 2e8f18bca2224d50e80c138278fdbe0a5bccf926 Mon Sep 17 00:00:00 2001 From: Matthew White Date: Thu, 15 Feb 2024 15:27:31 -0500 Subject: [PATCH] Update description for migration tests --- test/integration/other/migrations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/other/migrations.js b/test/integration/other/migrations.js index 2887829c0..6efec49e6 100644 --- a/test/integration/other/migrations.js +++ b/test/integration/other/migrations.js @@ -36,7 +36,7 @@ const testMigration = (filename, tests, options = {}) => { const { only = false, skip = false } = options; const f = only ? describe.only : (skip ? describe.skip : describe); // eslint-disable-next-line func-names, space-before-function-paren - f(`migrations: ${filename}`, function() { + f(`database migrations: ${filename}`, function() { this.timeout(20000); beforeEach(() => upToMigration(filename, false));