test(Date & Time Node): Skip the test when local timezone is not in UTC (no-changelog) (#5735)

Check for moment default timezone in dateTime tests
This commit is contained in:
agobrech 2023-03-20 16:55:40 +01:00 committed by GitHub
parent cb2ba97f38
commit 46d013cbc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,10 @@
import moment from 'moment';
import { testWorkflows, getWorkflowFilenames } from '../../../../test/nodes/Helpers'; import { testWorkflows, getWorkflowFilenames } from '../../../../test/nodes/Helpers';
const workflows = getWorkflowFilenames(__dirname); const workflows = getWorkflowFilenames(__dirname);
// ! When making changes to the Workflow test files make sure to export env TZ=UTC as Github Actions runs in UTC timezone // ! When making changes to the Workflow test files make sure to export env TZ=UTC as Github Actions runs in UTC timezone
if (new Date().getTimezoneOffset() === 0) { if (new Date().getTimezoneOffset() === 0 || moment().utcOffset() === 0) {
describe('Test DateTime Node', () => testWorkflows(workflows)); describe('Test DateTime Node', () => testWorkflows(workflows));
} else { } else {
describe('Test DateTime Node', () => { describe('Test DateTime Node', () => {