Security News
RubyGems.org Adds New Maintainer Role
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.
ava-fixture-docker-db
Advanced tools
acquire a fresh docker database container attached to your ava test context
acquire a fresh docker database container attached to your ava test context
import ava, { TestInterface } from 'ava'
import { db, DbContext } from 'ava-fixture-docker-db'
const test = ava as TestInterface<DbContext>
test.beforeEach(t => db.setup(t.context)) // setup(context, dbOptions, dockerodeOptions)
test.afterEach(t => db.teardown(t.context))
test('some that needs a db!', async t => {
t.is(t.context.dbConfig.username, 'postgres', 'has default postgres user')
const containerData = await t.context.dbContainer.inspect()
t.truthy(containerData.Image, 'has docker image')
t.is(containerData.State.Status, 'running', 'db is running')
t.is(Object.keys(containerData.HostConfig.PortBindings).length, 1, 'has host port exposed')
})
see the exported typescript typings or source for the simple additional APIs you can use in setup.
FAQs
acquire a fresh docker database container attached to your ava test context
The npm package ava-fixture-docker-db receives a total of 114 weekly downloads. As such, ava-fixture-docker-db popularity was classified as not popular.
We found that ava-fixture-docker-db 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.