Merge branch 'main' into support-remote-config

This commit is contained in:
Sam Partington 2020-06-30 14:57:35 +01:00 committed by GitHub
commit 260a93fe06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 4 additions and 8 deletions

View file

@ -58,7 +58,7 @@ test('getThreadsFlag() should return the correct --threads flag', t => {
}
});
test('getThreadsFlag() throws if the ram input is < 0 or NaN', t => {
test('getThreadsFlag() throws if the threads input is not an integer', t => {
process.env['INPUT_THREADS'] = "hello!";
t.throws(util.getThreadsFlag);
});