Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

120
Views
EnumSource equivalent in jest

Is it possible to run a parameterized test in just by providing an enum (similar to @EnumSource in junit)?

I am aware of the table expression format for jest.

it.each`
  risk
  ${'GROWTH'}
  ${'BALANCED'}
`('should show the strategy $strategy', async ({ strategy }: { strategy: Strategy }) => {

and the array style

it.each([
        [[1, 41], 42],
        [[1, 2, 39], 42],
        [[1, 2, NaN], NaN],
        [[1, 2, Infinity], Infinity],
    ])('adds %p expecting %p', (numbers: number[], result: number) => {
        expect(calculator('+', numbers)).toEqual(result);
    });

but if I try to pass all enum values e.g by means of Object.keys(Strategy) it results in STRATEGY.GROWTH,BALANCED,CONSERVATIVE.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!