testing-tools
Testing is the practice of systematically testing software to make sure it works. Testing can be iterative, and happen multiple times.
Eliminate bugs and ship with more confidence by adding these tools to your workflow.
Here are 2,445 public repositories matching this topic...
Current behavior
Prior to 9.5.0(?) setting focus in the browser runner window and typing Cmd-F to search for text would search the text within the browser window. Now Cmd-F is captured and focus is shifted to the search bar in the Cypress app and the names of tests are searched.
I use search within the browser window as a normal part of my testing debugging workflow: to find specific steps
-
Updated
Mar 4, 2022 - JavaScript
-
Updated
Mar 4, 2022 - Go
-
Updated
Mar 5, 2022 - Java
-
Updated
Mar 3, 2022 - JavaScript
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Feb 4, 2022 - Go
-
Updated
Mar 3, 2022 - Java
-
Updated
Mar 5, 2022 - Objective-C
-
Updated
Feb 22, 2022
-
Updated
Feb 9, 2022 - Go
-
Updated
Mar 1, 2022 - JavaScript
-
Updated
Feb 17, 2022 - JavaScript
-
Updated
Oct 13, 2021 - C
I have two setups, in one the -parallel
option works just fine in vscode - it generates parallel test cases as it should. In the other it doesn't do anything (not reporting errors in custom flags is a problem in the vscode go plugin, which is not the issue here).
Both were installed with go get -u github.com/cweill/gotests/...
when in the $HOME directory within 15 minutes of each other.
-
Updated
Feb 11, 2022 - Shell
Our collection matchers forAll
, forNone
, checkAll
and others don't include Charsequence
. It's only a type issue, as CharSequence !is Collection<Char>
The current workaround for this is turning your strings into lists via toList
:
val string = "MyString"
val charList: List<Char> = string.toList()
charList.forAll { }
However, I do feel we should be able to just
This is suggested in Gitter chat (Russian room). We have such method for uia_controls.MenuWrapper
. But some menus are implemented as toolbar with drop-down submenus. It makes sense to add similar methods to choose such submenu items.
Describe the bug
Running vitest on any sample app from https://github.com/nestjs/nest/tree/master/sample won't run well with testing modules like this
const module: TestingModule = await Test.createTestingModule({
controllers: [CatsController],
providers: [
{
provide: CatsService,
useValue: {
create: vi.fn().mockResolvedVal
-
Updated
Mar 3, 2022 - Go
-
Updated
Mar 4, 2022 - JavaScript
As the moment it's only possible to install bats from bats-core from source on linux.
We should create packages to install easily on Linux.
It could be:
apt install bats-core
for Debian/Ubuntu/Linux Mintyum install bats-core
for Fedora/RedHat/CentOS- a package on (Flathub](www.flathub.org)
- a snap on https://snapcraft.io/
...
Flathub is probably the easiest to support most d
Hi there,
I think this can be a good issue for a first-time contributor. It would be great if we can increase documentation for the DatabaseCleaner::Configuration API: https://github.com/DatabaseCleaner/database_cleaner/blob/master/lib/database_cleaner/configuration.rb#L56-L72
Even though methods are pretty self-explanatory, I think it is a good idea to maintain a complete documentation for
-
Updated
Feb 23, 2022 - Go
Bug
Current Behavior
Following instructions for trying the vote
example causes an error -- specifically, when I try garden dev --hot=vote
, I get: The following requested services are not configured for hot reloading: vote
Expected behavior
I expect the example to start, with hot-reloading working.
Reproducible example
-
Updated
Dec 4, 2021 - Go
-
Updated
Feb 9, 2019 - TypeScript
-
Updated
Mar 4, 2022 - TypeScript
- Wikipedia
- Wikipedia
Is there an existing issue for this?
Summary
It would be amazing to have an Authorization tab on GraphQL, as it is for REST.
Why should this be worked on?
Authorization is also a thing in GQL and having automated OAuth mechanism would be👍