# grunt-jasmine-node-mongodb-fs

> Grunt task for running jasmine-node with mongodb-fs

Latest version **0.1.0** (published 2015-01-16) · 0 weekly downloads

## Install

```sh
npm install grunt-jasmine-node-mongodb-fs
pnpm add grunt-jasmine-node-mongodb-fs
yarn add grunt-jasmine-node-mongodb-fs
bun add grunt-jasmine-node-mongodb-fs
```

Provides the command `grunt-jasmine-node-mongodb-fs`.

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2015-01-16 |
| First published | 2015-01-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.8.0 |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Manuel Reyes C |
| Maintainers | mreyesp6 |
| Keywords | gruntplugin, grunt, plugins, builds, ci, jasmine, jasmine-node |

## Links

- npm: https://www.npmjs.com/package/grunt-jasmine-node-mongodb-fs
- Repository: https://github.com/mreyes23p/grunt-jasmine-node-mongodb-fs
- Homepage: https://github.com/jasmine-contrib/grunt-jasmine-node
- Issues: https://github.com/mreyes23p/grunt-jasmine-node-mongodb-fs/issues
- npm.io page: https://npm.io/package/grunt-jasmine-node-mongodb-fs

## Dependencies (3)

- [mongodb-fs](https://npm.io/package/mongodb-fs.md) 0.0.12
- [jasmine-node](https://npm.io/package/jasmine-node.md) ~1.7.0
- [coffee-script](https://npm.io/package/coffee-script.md) ~1.6.2

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2015-01-16
- 0.2.1 — 2015-01-16

## README

# grunt-jasmine-node

A grunt.js task to run your jasmine feature suite using jasmine-node.

## Getting Started
Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-jasmine-node`

Then add this line to your project's `Gruntfile.js` grunt file:

```javascript
grunt.initConfig({
  jasmine_node: {
    options: {
      forceExit: true,
      match: '.',
      matchall: false,
      extensions: 'js',
      specNameMatcher: 'spec',
      jUnit: {
        report: true,
        savePath : "./build/reports/jasmine/",
        useDotNotation: true,
        consolidate: true
      }
    },
    all: ['spec/']
  }
});

grunt.loadNpmTasks('grunt-jasmine-node');

grunt.registerTask('default', ['jasmine_node']);
```

## Options

default options are:

```javascript
{
  match: '.',
  matchall: false,
  specNameMatcher: 'spec',
  helperNameMatcher: 'helpers',
  extensions: 'js',
  showColors: true,
  includeStackTrace: true,
  useHelpers: false,
  teamcity: false,
  coffee: false,
  jUnit: {
    report: false,
    savePath : "./reports/",
    useDotNotation: true,
    consolidate: true
  }
}
```

## Bugs

Help us squash them by submitting an issue that describes how you encountered it; please be as specific as possible including operating system, node, grunt, and grunt-jasmine-node versions.

## Release History

see [GitHub Repository](/s9tpepper/grunt-jasmine-node).

## License
Copyright (c) 2012 "s9tpepper" Omar Gonzalez & contributors.
Licensed under the MIT license.

---
_Source: https://npm.io/package/grunt-jasmine-node-mongodb-fs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
