
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.
@japa/expect-type
Advanced tools
Write assertions for TypeScript types
The expect-type
plugin of Japa helps you write assertions against the TypeScript types. There is no runtime behavior with the expect-type
plugin and you need to compile your code to view the assertion errors.
The plugins wraps expect-type under the hood.
Install the package from the npm registry as follows:
npm i @japa/expect-type
yarn add @japa/expect-type
You can use this package with the @japa/runner
as follows.
import { expectTypeOf } from '@japa/expect-type'
import { configure } from '@japa/runner'
configure({
plugins: [expectTypeOf()],
})
Once done, you will be able to access the expectTypeOf
property on the test context.
test('test title', ({ expectTypeOf }) => {
expectTypeOf({ foo: 'bar' }).toEqualTypeOf<{ foo: string }>()
})
FAQs
Write assertions for TypeScript types
We found that @japa/expect-type demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
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.