Skip to content

Commit

Permalink
remove .only
Browse files Browse the repository at this point in the history
  • Loading branch information
vid committed Jan 17, 2025
1 parent 9d7b0a1 commit ae87b73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/cli/src/lib.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('usageThenExit', () => {
});

describe('options', () => {
it.only('stepper options', async () => {
it('stepper options', async () => {
const feature = { path: '/features/test.feature', content: `When I have a stepper option` };
const protoConfig = {
moduleOptions: { [HAIBUN_O_TESTSTEPSWITHOPTIONS_EXISTS]: 'true' },
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/lib/util/util.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ describe('verifyRequiredOptions', () => {
});

describe('getStepperOptions', () => {
it.only('finds stepper options', async () => {
it('finds stepper options', async () => {
const conc = util.getStepperOptionValue(HAIBUN_O_TESTSTEPSWITHOPTIONS_EXISTS, 'true', [TestStepsWithOptions]);
expect(conc).toBeDefined();
});
Expand Down

0 comments on commit ae87b73

Please sign in to comment.