50,460 questions
1
vote
1
answer
52
views
HttpTestingController runs endlessly
In my component I have httpResource:
export class EmployeesComponent {
employees = httpResource<EmployeeResponseDtoOutput[]>(() => '/api/employees', {
defaultValue: [],
});
}
and in ...
0
votes
1
answer
21
views
nicegui.testing with User fixture for upload file ui.upload
Hello i am new on nicegui, i create a simple app where i need to upload the files and store this files on ftp server. I start to make some tests with nicegui.testing.User (i use this package because i ...
Tooling
0
votes
1
replies
27
views
How to write test code for Prisma version 7
For testing Prisma, I used prismock or prisma-mock . But those packages are compatible with Prisma version 6 or earlier. I visit the Prisma Official website, and they are suggesting using jest-mock-...
Tooling
1
vote
1
replies
41
views
What is the current recommended way to run integration tests in Flutter (since integration_test is discontinued)?
I’m setting up integration tests in a Flutter project and noticed an inconsistency between the official documentation and the current state of the packages.
The official Flutter documentation still ...
0
votes
0
answers
15
views
How do I create Test Suites in Kiwi TCMS?
I'm using Kiwi TCMS and I can't find the option to create a new Test Suite.
I expected to see a "New Suite" button under Test Cases, but it's not visible in my interface.
These are the steps ...
Tooling
1
vote
2
replies
38
views
Looking for a test management tool with fast test run logs and clean test case organization
I’m evaluating test management tools for a small QA team and trying to find something lightweight yet reliable for test case organization and test run tracking. Some of the traditional options I’ve ...
0
votes
0
answers
55
views
emberjs tests not running
My tests are not running anymore, abort with this error:
Error: No tests were run.
at ProcessingQueue.done (webpack://__ember_auto_import__/./node_modules/qunit/qunit/qunit.js?:819:583)
at ...
-3
votes
0
answers
35
views
ARP spoofing using Bettercap [closed]
I have started learning about penetration testing and found bettercap and was experimenting with it, Currently i am trying to do ARP spoofing on my Mobile device so that I can do a MITM attack and ...
-2
votes
0
answers
24
views
how can I upload image from file explore in Win App driver using Appium? [closed]
I tried multiple ways to upload the image through the Windows File Explorer using WinAppDriver and Appium in C#, but I still couldn’t get it to work. I tested different approaches to interact with the ...
Best practices
3
votes
0
replies
36
views
Testing with corroutines
Let's say I have Worker class and I want to do long running tasks in the background until user stops it or it is cancelled. It changes state of the class while doing the work and I want to write tests ...
Tooling
0
votes
2
replies
48
views
How to write tests which analyze HTTP requests made on NextJS server side?
I work on a NextJS project with Pages Router. We are using Jest for unit tests and Playwright for E2E.
The application we are making is a funnel with several steps. Each step is a form with several ...
Best practices
0
votes
0
replies
50
views
Testing in MVVM architecture. What to test and how to approach TDD?
I’m currently working on a personal Android project using Kotlin and Android Studio, following a basic MVVM architecture:
─main
│ ├───java
│ │ └───com
│ │ └───example
│ │ └───...
0
votes
0
answers
23
views
Why is <c:if test="#{MyBean.myFunction()}"> rendering multiple times in my xhtml file?
I have a large xhtml file, below the imports there is a component that should only render when a test from a Bean returns true.
<c:if test="#{MyBean.myFunction()}">
<div id=&...
-3
votes
0
answers
82
views
Entering text with no dependency on current keyboard layout
If a GUI test must involve entering text in a text field, a convenient shortcut is robot.enterText(..) (available in both FEST and its fork, AssertJ Swing).
I was under the impression the utility is ...
Advice
0
votes
0
replies
39
views
Make Bazel use either RUNFILES_DIR or RUNFILES_MANIFEST_FILE?
Bazel on Linux usually sets the RUNFILES_DIR environment variable but it may alternatively set RUNFILES_MANIFEST_FILE. General advice for scripts is to make your scripts capable of working with both. ...