0.3.1 • Published 9 months ago

spekk v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Spekk

Javascript test runner for NodeJS applications.

Install

# Install globally
npm i -g spekk

# Install locally in app
npm i spekk

Usage

Add your tests in spec/tests. Data and test helpers can be added in spec/data and spec/lib respectively, they will be loaded automatically if they exist.

Optionally create a spekk file in spec/spekk.js. The spec/spekk.js file must export a function that returns a Javascript object with the things you need for your tests:

module.exports = async function() {
  // Set up db connection for example
  var db = await db({ name: 'spekk-test' })

  // Run before run if defined
  async function setup() {}

  // Run after run if defined
  async function teardown() {}

  return { db, setup, teardown }
}

Whatever the spekk file returns will be available in the tests:

// spec/tests/spec-test.js
it('should test something', async function({ t, db, data, lib }) {
  var user = await db('user').get()
  t.ok(user.id)
})

The t in the function above is included automatically and is Node assert.

There are some built in global functions you can use in your tests:

  • it or test- defines a test which will be run
  • xit or x - skips a test and does nothing
  • only or o - only these tests will be run
  • beforeEach - run before each test
  • afterEach - run after each test
  • beforeAll - run before all tests in a file
  • afterAll - run after all tests in a file

Run the tests with:

spekk

The name of the test will be taken from the file name, so if your test file is named project-test.js, then the test name will be Project Test.

This is a full example, stored in spec/tests/spekk-test.js:

// Setup is run before each test
beforeEach(async function({ t }){
  // Do something before each test
})

// This test is being run
it('should test it', async ({ t }) => {
  t.ok(true)
})

// This test is skipped
xit('should test it', async ({ t }) => {
  t.ok(true)
})

// Only this test will be run
only('should test it', async ({ t }) => {
  t.ok(true)
})

To run only certain tests, you can match with a regex pattern:

# Match any test file name that includes 'pattern'
spekk pattern

# Multiple patterns file, comma separated
spekk todo,project

If you want automatically run the tests when you save a file you can use nodemon:

nodemon --exec spekk

Add this to you package.json file to run with npm:

"scripts": {
  "test": "nodemon -q --exec spekk"
}

Then run with npm run test in your application.

MIT Licensed. Enjoy!

0.3.0

9 months ago

0.3.1

9 months ago

0.2.2

2 years ago

0.2.1

3 years ago

0.2.0

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago