Skip to content

Commit

Permalink
fix: tests should use chai
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 28, 2018
1 parent c3bfa3a commit 16fdb7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/app/base/test/index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const {expect} = require('@dxcli/dev-test')
const {expect} = require('chai')
const {add} = require('../src')

describe('add', () => {
Expand Down
2 changes: 1 addition & 1 deletion templates/app/base/test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {expect} from '@dxcli/dev-test'
import {expect} from 'chai'

import {add} from '../src'

Expand Down

0 comments on commit 16fdb7b

Please sign in to comment.