Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
seequcumber
Advanced tools
SeeQucumber is a Gherkin based framework to manage manual test cases.
It generates the following artifacts:
Seequcumber is available as an npm module.
Install:
$ npm install seequcumber
Seequcumber CLI has two primary options:
seequcumber --testPlan
Creates a new Test Plan from a directory of Gherkin files. Once the blank template is generated, it can be found in the current directory as a csv file. It's easily editable to add more required test cases (example).
seequcumber --testReport
Creates a new Test Report from a Test Plan and directory of Gherkin files. Once generated, the html report can be found in the current directory.
To evaluate if a required scenario has been completed, each scenario's "version tested" (example) is compared the "version to test" from the Test Plan (example).
This comparison uses a string sort (as opossed to a natural sort). It is required that the Test Plan's "version to test" matches the format of the feature file "version tested".
For example: Test Plan version to test: 0.40.0 Feature File version tested: 0.40.20190125 (version 0.40 built on Jan 25th 2019)
-tp, --testPlan Create a new Test Plan
-tr, --testReport Create a new Test Report
-d, --featureDir [dir]
Directory of feature files
-f, --testPlanFilename [filename]
Filename of the Test Plan used to generate a Test Report
-h, --help Usage information
Examples:
seequcumber --testPlan --featureDir "./dir"
seequcumber --testReport --testPlanFilename "./myTestPlan.csv" --featureDir "/dir"
Seequcumber extract scenarios from feature files used in manual testing.
It requires the following format:
Feature tag @manual
A tag indicating that this test is manual (as opposed to automated)
is required.
Example
@manual
Feature: ...
Scenario: ...
Test Run Result Each Scenarios has steps with a table containing the manual test result. The table can contain several rows to indicate multiple executions on different versions. Example
Scenario: ...
When ...
|<Result>|<Version>|<Tester>|<Defect>|
Results The result of the manual test.
PASSED (or PASS)
FAILED (or FAIL)
SKIPPED (or SKIP)
Version
The version of the software that was tested.
Example 0.40.0.20190101 (0.40 version built on January 01 2019)
Tester (Optional)
Name of tester who executed this test case.
Defect (Optional) The ticket number(s) for defects filed for this step
The following third-party libraries are used by this module:
Clone the repo and install dependencies:
git clone https://github.com/seeq12/seequcumber.git
cd seequcumber
npm install
Run the tests:
npm test
FAQs
Gherkin based framework to manage manual test cases.
The npm package seequcumber receives a total of 357 weekly downloads. As such, seequcumber popularity was classified as not popular.
We found that seequcumber demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.