Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x | import { appInstall, DEFAULT_USER } from '@orchesty/nodejs-connectors/test/DataProvider';
import { container, db, sender } from '@orchesty/nodejs-connectors/test/TestAbstract';
import HeurekaAvailabilityFeedConnector from '../src/Connector/HeurekaAvailabilityFeedConnector';
import HeurekaProductFeedConnector from '../src/Connector/HeurekaProductFeedConnector';
import HeurekaFeedApplication, {
AVAILABILITY_FEED_URL,
NAME,
PRODUCT_FEED_URL,
SETTINGS,
} from '../src/HeurekaFeedApplication';
export default function init(): void {
appInstall(NAME, DEFAULT_USER, {
[SETTINGS]: {
[PRODUCT_FEED_URL]: 'https://path.to/xml',
[AVAILABILITY_FEED_URL]: 'https://path.to/xml',
},
});
const app = new HeurekaFeedApplication();
container.setApplication(app);
const heurekaProductFeedConnector = new HeurekaProductFeedConnector();
heurekaProductFeedConnector
.setSender(sender)
.setDb(db)
.setApplication(app);
container.setConnector(heurekaProductFeedConnector);
const heurekaAvailabilityFeedConnector = new HeurekaAvailabilityFeedConnector();
heurekaAvailabilityFeedConnector
.setSender(sender)
.setDb(db)
.setApplication(app);
container.setConnector(heurekaAvailabilityFeedConnector);
}
|