add fake env vars for unit tests
This commit is contained in:
parent
c73cd20ccf
commit
9cdc6e1934
@ -7,6 +7,7 @@ module.exports = {
|
||||
'^.+\\.tsx?$': 'ts-jest'
|
||||
},
|
||||
'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
|
||||
'setupFiles': ["<rootDir>/testenv.js"],
|
||||
'moduleFileExtensions': [
|
||||
'ts',
|
||||
'tsx',
|
||||
|
@ -16,7 +16,8 @@ const logFormat = format.combine(
|
||||
|
||||
const consoleTransports = [
|
||||
new transports.Console({
|
||||
format: logFormat
|
||||
format: logFormat,
|
||||
silent: process.env.NODE_ENV === 'testing'
|
||||
})
|
||||
]
|
||||
export const logger = createLogger({
|
||||
|
15
testenv.js
Normal file
15
testenv.js
Normal file
@ -0,0 +1,15 @@
|
||||
process.env.CLIENT_ID = "CLIENT_ID"
|
||||
process.env.SECRET = "SECRET"
|
||||
process.env.BOT_TOKEN = "BOT_TOKEN"
|
||||
process.env.WATCHER_ROLE = "WATCHER_ROLE"
|
||||
process.env.ADMIN_ROLE = "ADMIN_ROLE"
|
||||
process.env.CHANNEL_ID = "CHANNEL_ID"
|
||||
process.env.WATCHPARTY_ANNOUNCEMENT_ROLE = "WATCHPARTY_ANNOUNCEMENT_ROLE"
|
||||
process.env.YAVIN_JELLYFIN_URL = "YAVIN_JELLYFIN_URL"
|
||||
process.env.YAVIN_COLLECTION_ID = "YAVIN_COLLECTION_ID"
|
||||
process.env.YAVIN_COLLECTION_USER = "YAVIN_COLLECTION_USER"
|
||||
process.env.YAVIN_TOKEN = "YAVIN_TOKEN"
|
||||
process.env.TOKEN = "TOKEN"
|
||||
process.env.JELLYFIN_USER = "JELLYFIN_USER"
|
||||
process.env.JELLYFIN_COLLECTION_ID = "JELLYFIN_COLLECTION_ID"
|
||||
process.env.JELLYFIN_URL = "JELLYFIN_URL"
|
@ -53,7 +53,7 @@ describe('vote controller - none_of_that functions', () => {
|
||||
allowedMentions: {
|
||||
parse: ["roles"]
|
||||
},
|
||||
content: `[Abstimmung beendet] für https://discord.com/events/${testGuildId}/${testEventId}\n<@&ANNOUNCE_ROLE> Wir gucken MovieNew am 01.01. um 01:00`
|
||||
content: `[Abstimmung beendet] für https://discord.com/events/${testGuildId}/${testEventId}\n<@&WATCHPARTY_ANNOUNCEMENT_ROLE> Wir gucken MovieNew am 01.01. um 01:00`
|
||||
})
|
||||
})
|
||||
// test('checkForPollsToClose', async () => {
|
||||
|
Loading…
Reference in New Issue
Block a user