Skip to content

Commit

Permalink
Remove .only from test.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yadav committed May 12, 2024
1 parent 824bcd9 commit ca97625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/library/utils/fix-leading-zero.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const testCases: TestCases<Arguments, Expected>[] = [
];

for (const testCase of testCases) {
describe.only(testCase.label, () => {
describe(testCase.label, () => {
test.each(testCase.cases)(
'$arguments.numStr -> $expected',
({ arguments: { numStr }, expected }) => {
Expand Down
2 changes: 1 addition & 1 deletion test/library/utils/limit-to-scale.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const testCases: TestCases<Arguments, Expected>[] = [
];

for (const testCase of testCases) {
describe.only(testCase.label, () => {
describe(testCase.label, () => {
test.each(testCase.cases)(
'$arguments.numStr -> $expected',
({ arguments: { numStr, scale, fixedDecimalScale }, expected }) => {
Expand Down

0 comments on commit ca97625

Please sign in to comment.