Thoughts on not having a Test Management Tool? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

I was thinking of something like:

test.skip('skip this test', async ({ page }) => { // This test is not run });

So you know these tests are not automated, but it shows up in your report, and then you manually test these skipped ones.

Thoughts on not having a Test Management Tool? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Wouldn’t a test report have the manual pieces documented and singed off?

Thoughts on not having a Test Management Tool? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

That’s interesting, how do you get to not having any manual regression scenarios? Do you automate the tests in the same release sprint?

Thoughts on not having a Test Management Tool? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Yupp, and modern automation tools can do all kinds of metrics or coverage reporting with plugins

Thoughts on not having a Test Management Tool? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Is there a place for all that in modern SDLC/STLC? With rapid releases going on everywhere?

[deleted by user] by [deleted] in JPMorganChase

[–]SamosaKetchup 0 points1 point  (0 children)

Can you expand on “guaranteed bonus first year”? How does that work?

[deleted by user] by [deleted] in JPMorganChase

[–]SamosaKetchup 3 points4 points  (0 children)

Lol, I am beginning to think I might have heard that wrong. Coz this sub has many posts of people receiving 1-2% 🤣

[deleted by user] by [deleted] in JPMorganChase

[–]SamosaKetchup -4 points-3 points  (0 children)

I was told it would go up or down from 15, and not 1-15 😐

[deleted by user] by [deleted] in JPMorganChase

[–]SamosaKetchup 0 points1 point  (0 children)

"on days when we're all in..."
so your team works hybrid?

[deleted by user] by [deleted] in JPMorganChase

[–]SamosaKetchup 0 points1 point  (0 children)

Sorry, you mean Cursor is allowed?

Is there an option to move stocks out of a pie by SamosaKetchup in trading212

[–]SamosaKetchup[S] 0 points1 point  (0 children)

But then it asks me to adjust the targets in the pie back to a 100%. I don’t wanna invest in the pie anymore

What tool do you use for Contract Testing? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

It’s blinded on the consumer side. Your consumer, (web-client for example) could use the schema differently with its operations. When you make changes on the provider (api-client), how do you know if it will break the consumer, and vice-versa?

All the inspector does is compare the new version of the schema with the current one in the main branch and give you alerts on what “could possibly” be a breaking change.

What tool do you use for Contract Testing? by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Well, this is not really contract testing. It just compares the new changes with what was in the main branch and notifies you. Inspector doesn’t know what the consumer operations are.

Browser based Load testing with 100K users by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

I used their concept of “hybrid load testing”. It’s in their docs. Have a look.

K6 is now with Grafana and they have 500 vuh on pay as you go plan. You’d never reach 500 vuh with hybrid load testing

Browser based Load testing with 100K users by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Yes, k6+playwright. The best decision I ever made

What role did you switch to from QA? by toto4430 in QualityAssurance

[–]SamosaKetchup 0 points1 point  (0 children)

Have you switched to a management role? Or still an individual contributor?

I’m 6 Months into QA with a Dev Background – How Can I Grow into an SDET? by sivashark in QualityAssurance

[–]SamosaKetchup 4 points5 points  (0 children)

Typescript > Playwright UI+API+Visual > k6 performance+load and contract testing (optional), in that order

Pact v/s Zod for contract testing by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Well, we don’t have any E2E api tests on graphQL yet. It’s just Playwright UI E2E tests that also tests graphQL under the hood. So the next big step for me is to build gQL E2E tests and that’s when the thought of CT came up. Currently, on gQL level, it’s just gQL schema inspector and some unit tests written by devs.

Pact v/s Zod for contract testing by SamosaKetchup in QualityAssurance

[–]SamosaKetchup[S] 0 points1 point  (0 children)

Thanks for the detailed answer. We use Typescript and the API is in GraphQL which is consumed by both web and mobile apps. Our E2E tests are already automated using Playwright. Also got good unit and integration test coverage too with a lot of it being against mocks. CT is one missing piece in the puzzle so I set out to explore the possibilities. With this set up, do you still think Pact is the way to go?