Is there a way not to add a pm.test to the results? Or is there a better way to write this test?

My question:
I am wanting this code to not show in the test results part, as I don’t want the failed test to be flagged in the results? All I can find is a skip test function? Is there no test function which wont display the test results? Or is there a better way to write this code - thanks/

Comparing floats in postman is annoying…

*CODE *:

pm.test(β€œVerify any of the following strings”, function () {
let expectedStrings = [β€œ4.60”, β€œ4.80”, β€œ4.70”, β€œ4.90”, β€œ4.10”, β€œ4.11”, β€œ4.12”, β€œ4.13”, β€œ5.20”,β€œ5.30”,β€œ5.40”,β€œ5.50”,β€œ5.60”,β€œ5.70”,β€œ5.80”, β€œ5.90”];

const hasAnyExpectedString = expectedStrings.some((s) => version2.includes(s));
pm.expect(hasAnyExpectedString).to.be.true;
postman.setNextRequest(β€œstoptest1”)
});

i don’t want this test to fail when the expected string is for example β€˜5.10’