Package detail

@japa/file-system

japa6.6kMIT2.3.2

File system plugin for writing assertions for files and directories

japa, test, file-system

readme

@japa/file-system

File system plugin for Japa

[![gh-workflow-image]][gh-workflow-url] [![npm-image]][npm-url] license-image

The file system plugin allows you to easily manage files and directories during tests and write assertions against them.

Complete API documentation

Installation

You can install the plugin from the npm packages registry as follows.

npm i -D @japa/file-system

Usage

The next step is registering the plugin inside the plugins array.

import { fileSystem } from '@japa/file-system'

configure({
  plugins: [fileSystem()],
})

Once the plugin has been registered, you can access the fs property from the test context. The fs property exposes the helper functions to read and write files. For example:

test('read rc file', async ({ fs }) => {
  await fs.write(
    'rc.json',
    JSON.stringify({
      foo: 'bar',
    })
  )

  await runMethodThatNeedsRcFile()
})

[gh-workflow-url]: https://github.com/japa/file-system/actions/workflows/checks.yml 'Github action'

[npm-url]: https://www.npmjs.com/package/@japa/file-system/v/latest 'npm'