Skip to content

Commit f1d1d56

Browse files
committed
Fix test checking for node version
1 parent b27a159 commit f1d1d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/system/repository.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('project repository', function () {
3838
expect(json).to.have.property('repository');
3939

4040
expect(json).to.have.property('engines');
41-
expect(json.engines).to.eql({ node: '>=6' });
41+
expect(json.engines).to.eql({ node: '>=12' });
4242
});
4343

4444
it('must have a valid version string in form of <major>.<minor>.<revision>', function () {

0 commit comments

Comments
 (0)