ebemunk/node-uci

View on GitHub
src/Engine/__test__/constructor.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import Engine from '../'

describe('Engine.constructor', () => {
  it('should throw if path is empty', () => {
    expect(() => new Engine()).toThrow()
  })
})