Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@ephox/agar
Advanced tools
agar
is a library containing testing infrastructure for keyboard, mouse, focus, and DOM Manipulation. It is designed to provide a pipeline for composing together asynchronous testing operations. It does not bundle any commands. It is only a collection of modules.
agar
is available as an npm
package. You can install it via the npm package @ephox/agar
npm install @ephox/agar
As mentioned earlier, agar
contains testing infrastructure for keyboard, mouse, focus, and DOM Manipulation. The best place to see how it works is to look at the demos provided in the project directory at src/demo/js/ephox/agar/demo
. More complete public documentation will be available in the future.
agar
uses bedrock
to run tests. This is packaged as a dev dependency of agar
. There are two types of tests:
The default yarn test
command just runs browser tests using Chrome
.
The browser tests are in the src/test/js/browser
directory. They do not require a webdriver and can be run using the bedrock
mode (rather than bedrock-auto
).
$ bedrock --testdir src/test/js/browser
In this mode, bedrock will not open the browser, nor will it close it. This mode is used for development and debugging.
Some tests in agar need to access raw WebDriver APIs like sendKeys
. This allows tests to use selenium to provide actual real key events, rather than simulated JavaScript events. However, to run these tests, you need to use bedrock-auto
. The tests are stored in the src/test/js/webdriver
directory.
For example, to run the tests on Chrome:
$ bedrock-auto -b chrome --testdir src/test/js/webdriver
FAQs
Testing infrastructure
The npm package @ephox/agar receives a total of 393 weekly downloads. As such, @ephox/agar popularity was classified as not popular.
We found that @ephox/agar demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.