1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-06-05 21:59:25 +02:00

set locale for tests

This commit is contained in:
Daniel Waxweiler
2021-05-04 10:37:30 +02:00
parent eae2d422e0
commit 65b42ba1e7
2 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { DateTime } from 'luxon'
import { DateTime, Settings } from 'luxon'
export default class DateTimeWrapper {
@@ -23,6 +23,10 @@ export default class DateTimeWrapper {
}
static getCurrentDatetimeAsString() {
return DateTime.local().toString()
return DateTime.now().toString()
}
static setDefaultLocale(locale) {
Settings.defaultLocale = locale
}
}