Skip to content

Commit

Permalink
chore: some minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
achettyiitr committed Sep 10, 2024
1 parent 9b67a9d commit e1b7aae
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions test/__tests__/warehouse.test.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
const _ = require("lodash");

const {input, output} = require(`./data/warehouse/events.js`);
const {opInput, opOutput} = require(`./data/warehouse/integration_options_events.js`);
const {names} = require(`./data/warehouse/names.js`);
const { input, output } = require(`./data/warehouse/events.js`);
const {
opInput,
opOutput
} = require(`./data/warehouse/integration_options_events.js`);
const { names } = require(`./data/warehouse/names.js`);
const destConfig = require(`./data/warehouse/dest_config_scenarios.js`);
const {largeNoOfColumnsevent} = require(`./data/warehouse/event_columns_length`);
const {rudderProperties} = require(`./data/warehouse/props.js`);
const {
largeNoOfColumnsevent
} = require(`./data/warehouse/event_columns_length`);
const { rudderProperties } = require(`./data/warehouse/props.js`);
const reservedANSIKeywordsMap = require("../../src/warehouse/config/ReservedKeywords.json");
const {fullEventColumnTypeByProvider} = require("../../src/warehouse/index.js");
const {validTimestamp} = require("../../src/warehouse/util.js");
const {
fullEventColumnTypeByProvider
} = require("../../src/warehouse/index.js");

const {
validTimestamp
} = require("../../src/warehouse/util.js");
const {transformTableName, transformColumnName} = require("../../src/warehouse/v1/util");
const {isBlank} = require("../../src/warehouse/config/helpers.js");

Expand Down

0 comments on commit e1b7aae

Please sign in to comment.