spec.js 410 B

12345678910111213141516171819
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. *
  5. * Copyright © 2015-2016 Konstantin Tarkus (@koistya)
  6. *
  7. * This source code is licensed under the MIT license found in the
  8. * LICENSE.txt file in the root directory of this source tree.
  9. */
  10. import { expect } from 'chai'
  11. describe('test suite', () => {
  12. it('test', () => {
  13. expect(true).to.be.equal.true
  14. })
  15. })