Skip to content

Commit 5e31024

Browse files
committed
fix: format path construction for improved readability in database dump tests
1 parent a5b0fae commit 5e31024

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/context/directory/databases.test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,11 @@ describe('#directory context databases', () => {
342342
];
343343

344344
await handler.dump(context);
345-
const scriptsFolder = path.join(dbDumpDir, constants.DATABASE_CONNECTIONS_DIRECTORY, 'users-no-options');
345+
const scriptsFolder = path.join(
346+
dbDumpDir,
347+
constants.DATABASE_CONNECTIONS_DIRECTORY,
348+
'users-no-options'
349+
);
346350
expect(loadJSON(path.join(scriptsFolder, 'database.json'))).to.deep.equal({
347351
name: 'users-no-options',
348352
enabled_clients: [],

0 commit comments

Comments
 (0)