Socket
Socket
Sign inDemoInstall

afix

Package Overview
Dependencies
2
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    afix

Tiny fixture utility.


Version published
Maintainers
1
Install size
37.2 kB
Created

Readme

Source

afix

npm version test coverage npm bundle size

Tiny fixture utility.

npm i afix

Usage

Afix creates directories and files within __dirname of the calling file. Be sure to call cleanup() at the end of each test to remove all your fixtures.

import fs from 'fs'
import assert from 'assert'
import baretest from 'baretest'
import { afix } from 'afix'

const test = baretest('afix')

test('afix', async () => {
  const fixture = afix({
    config: ['config.js', 'export default { foo: true }'],
  })

  assert.ok(fs.existsSync(fixture.root))
  assert(fs.existsSync(fixture.files.config.path))
  assert.equal(fs.readFileSync(fixture.files.config.path), fixture.files.config.content)

  fixture.cleanup()
})

License

MIT License © Sure Thing

FAQs

Last updated on 13 Dec 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc