Socket
Socket
Sign inDemoInstall

afix

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

afix

Tiny fixture utility.


Version published
Weekly downloads
11
increased by175%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 13 Dec 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc