mirror of
https://github.com/knex/knex.git
synced 2025-07-15 21:10:58 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
// Test Constants
|
|
const TEST_TIMESTAMP = new Date();
|
|
const TEST_ID = 'TEST_ID';
|
|
const { DRIVER_NAMES } = require('../../lib/constants');
|
|
|
|
module.exports = {
|
|
TEST_ID,
|
|
TEST_TIMESTAMP,
|
|
DRIVER_NAMES,
|
|
};
|