Files
taimed/node_modules/grunt-karma/test/grunt-karma-test.js
2025-07-24 17:21:45 +08:00

18 lines
384 B
JavaScript

/* global describe, it, expect */
describe('grunt-karma', function () {
describe('one', function () {
it('should be awesome', function () {
console.log('one')
expect('foo').to.be.a('string')
})
})
describe('two', function () {
it('should be equally awesome', function () {
console.log('two')
expect('woot').to.be.a('string')
})
})
})