Skip to content

Commit

Permalink
dings
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Jun 17, 2024
1 parent 029b0b2 commit 07d873c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const { describe, expect, it } = require('@jest/globals')

const { version: thisVersion } = require('../../package.json')

const nodeSV = Object.freeze(process?.versions?.node ?? '').split('.').map(Number))
const nodeSV = Object.freeze((process?.versions?.node ?? '').split('.').map(Number))

const testSetups = [
// region functional
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Copyright (c) OWASP Foundation. All Rights Reserved.
const { spawnSync } = require('child_process')
const path = require('path')

const nodeSV = Object.freeze(process?.versions?.node ?? '').split('.').map(Number))
const nodeSV = Object.freeze((process?.versions?.node ?? '').split('.').map(Number));

(function () {
const REQUIRES_NPM_INSTALL = [
Expand Down

0 comments on commit 07d873c

Please sign in to comment.