Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A functional testing framework for component-based web applications
$ npm install --save-dev tinto
Tinto is configured from an optional tinto.conf.js
file that should be placed in your project root. It should export the configuration object directly.
{
includeStack: false,
bundles: [],
browser: 'firefox'
}
searchButton.should.have.text('Search');
searchButton.text.should.equal('Search');
searchButton.should.be.enabled;
grid.should.have(3).rows;
grid.rows(0).should.equal(firstRow);
grid.should.contain(firstRow, secondRow);
searchButton.should.have.text('Search').and.be.enabled;
searchButton.should(
have.text('Search'),
be.enabled
);
searchButton.should.eventually.have.text('Search').and.be.enabled;
searchButton.should.eventually(
have.text('Search'),
be.enabled
);
function Grid() {
Component.apply(this, arguments);
this.getter('rows', function() {
return this.find('tr');
});
}
tinto.inherits(Grid, Component);
class Grid extends Component {
get rows() {
return this.find('tr');
}
}
var Grid = Component.extend({
get rows() {
return this.find('tr');
}
});
In order to use the CLI, you must install tinto globally. You can then run tinto --help
to list available commands.
See the example folder for a complete example.
This project was inspired by the excellent Testatoo functional testing library for Java.
FAQs
A functional testing framework for component-based web applications
The npm package tinto receives a total of 1 weekly downloads. As such, tinto popularity was classified as not popular.
We found that tinto demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.