
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
eyeglass-dev-testutils
Advanced tools
A suite of utilities for writing tests in eyeglass
modules.
npm install eyeglass-dev-testutils --save-dev
Example test_my_project.js
file.
var path = require("path");
var sass = require("node-sass");
var eyeglass = require("eyeglass");
var Testutils = require("eyeglass-dev-testutils");
var testutils = new Testutils({
engines: {
sass: sass,
eyeglass: eyeglass
}
});
var fixtureDir = path.join(__dirname, "fixtures"); // ./test/fixtures/
var fixtures = testutils.getSassFixtures(fixtureDir); // returns a collection of test fixtures
// for each fixture...
Object.keys(fixtures).forEach(function(name) {
var fixture = fixtures[name];
describe("Compile Fixture `" + name + "`", function() {
// assert the compiled source matches the expected CSS
it("the output should match " + name + ".css", function(done) {
testutils.assertCompiles(fixture.source, fixture.expected, done);
});
});
});
Your test directory would look something like this:
├── fixtures
│ ├── simpleTest.css
│ ├── simpleTest.scss
│ ├── someTest.css
│ ├── someTest.scss
│ ├── someTest2.css
│ └── someTest2.scss
└── test_my_project.js
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
FAQs
Testing Utilities. For Eyeglass.
The npm package eyeglass-dev-testutils receives a total of 0 weekly downloads. As such, eyeglass-dev-testutils popularity was classified as not popular.
We found that eyeglass-dev-testutils 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.