Skip to content

Commit

Permalink
test(fluent-schema): optimize split param (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Oct 23, 2023
1 parent 5498085 commit 089c90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fluent-schema.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const t = require('tap')

if (parseInt(process.versions.node.split('.')[0]) <= 8) {
if (parseInt(process.versions.node.split('.', 1)[0]) <= 8) {
t.skip('not supported')
} else {
run()
Expand Down

0 comments on commit 089c90e

Please sign in to comment.