maestro-server/client-app

View on GitHub
tests/unit/example.spec.js

Summary

Maintainability
A
0 mins
Test Coverage
import { expect } from 'chai'
import App from 'src/App'

describe('App.vue', () => {
  it('Created object', () => {
    const ty = typeof App.created
    expect(ty).to.equal('function')
  })
})