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.
github.com/Aaron70/Assertions
This repository exposes some useful methods for unit testing in Go. Defines methods to do "assertions" on your tests to have more consice tests files.
Asserts if the given condition is true
.
func TestExampleOfUse(t *Testing.T) {
Assertions.Assert(t, 3 == 3, "3 is equals to 3")
Assertions.Assert(t, 3 == 0, "3 is equals to 0")
}
// Tests will fail with: "caller.go:10: Condition '3 is equals to 0' not met: expected 'true' given 'false'"
Asserts if the given values expected
and given
are equals.
func TestExampleOfUse(t *Testing.T) {
Assertions.Assert(t, 3, 3, "3 is equals to 3")
Assertions.Assert(t, 3, 0, "3 is equals to 0")
}
// Tests will fail with: "caller.go:10: Condition '3 is equals to 0' not met: expected '3' given '0'"
FAQs
Unknown package
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.