
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
@dev-blinq/cucumber-js
Advanced tools
Cucumber.js with Blinq.io adaptation
We took the regular old Cucumber (A tool for running automated tests) and made improvements that could be helpful when working with data that should be saved or when we want to generate fake data for testing purposes in our Gherkin feature file.
@dev-blinq/cucumber-js is available on npm:
$ npm install @dev-blinq/cucumber-js
Before, we used to write Gherkin feature files like this -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| random_repo_name
Now, instead of picking a random name by ourselfs, we could fake data using the faker library and get a random value -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| {{string.alpha(10)}}
We could also save our fake data (or any data really) as a variable for future use using the equals (=) sign -
Feature: Github
Scenario Outline: Create a new repository
Given Create a new repository name "<repo>"
Examples:
| repo
| {{repo=string.alpha(10)}}
Scenario Outline: Create a second repository
Given Create a new repository with the same name as before "<repo>"
Examples:
| repo
| {{repo}}
In that example, we saved repo as a variable with a value of some fake data and used it again as the second repo value, both repos will have the same fake value.
See documentation for the Blinq.io app.
FAQs
Cucumber - Blinq.io Cucumber.js with Blinq.io adaptation
The npm package @dev-blinq/cucumber-js receives a total of 3,373 weekly downloads. As such, @dev-blinq/cucumber-js popularity was classified as popular.
We found that @dev-blinq/cucumber-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.