add fake env vars for unit tests
This commit is contained in:
parent
c73cd20ccf
commit
9cdc6e1934
@ -1,18 +1,19 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
'roots': [
|
'roots': [
|
||||||
'<rootDir>/tests',
|
'<rootDir>/tests',
|
||||||
'<rootDir>/server'
|
'<rootDir>/server'
|
||||||
],
|
],
|
||||||
'transform': {
|
'transform': {
|
||||||
'^.+\\.tsx?$': 'ts-jest'
|
'^.+\\.tsx?$': 'ts-jest'
|
||||||
},
|
},
|
||||||
'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
|
'testRegex': '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
|
||||||
'moduleFileExtensions': [
|
'setupFiles': ["<rootDir>/testenv.js"],
|
||||||
'ts',
|
'moduleFileExtensions': [
|
||||||
'tsx',
|
'ts',
|
||||||
'js',
|
'tsx',
|
||||||
'jsx',
|
'js',
|
||||||
'json',
|
'jsx',
|
||||||
'node'
|
'json',
|
||||||
],
|
'node'
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
@ -16,7 +16,8 @@ const logFormat = format.combine(
|
|||||||
|
|
||||||
const consoleTransports = [
|
const consoleTransports = [
|
||||||
new transports.Console({
|
new transports.Console({
|
||||||
format: logFormat
|
format: logFormat,
|
||||||
|
silent: process.env.NODE_ENV === 'testing'
|
||||||
})
|
})
|
||||||
]
|
]
|
||||||
export const logger = createLogger({
|
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: {
|
allowedMentions: {
|
||||||
parse: ["roles"]
|
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 () => {
|
// test('checkForPollsToClose', async () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user