Change double quotes to single

This commit is contained in:
2025-06-16 22:41:30 -07:00
parent 7a9724849b
commit 13c0a98f1b
4 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
console.log("Jest config file read.");
console.log('Jest config file read.');
module.exports = {
globalSetup: "./test/integration/setup.cjs",
globalTeardown: "./test/integration/teardown.cjs",
testPathIgnorePatterns: ["/node_modules/", "test/unit"],
globalSetup: './test/integration/setup.cjs',
globalTeardown: './test/integration/teardown.cjs',
testPathIgnorePatterns: ['/node_modules/', 'test/unit'],
testTimeout: 5000
};