Skip to content

Commit

Permalink
Remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
Niekes committed Dec 15, 2023
1 parent b829aba commit 54c504f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/number.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test('getRandomFloat should return random int within min max range', (t) => {
t.end();
});

test.only('interpolateLinear should return random int within min max range', (t) => {
test('interpolateLinear should return random int within min max range', (t) => {
const value1 = interpolateLinear(0.5, 0, 1, 0, 10);
const value2 = interpolateLinear(0.5, 0, 1, 0, 100);
const value3 = interpolateLinear(1.2, 0, 1, 0, 10);
Expand Down

0 comments on commit 54c504f

Please sign in to comment.