mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 17:22:36 +08:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
var chai = require('chai'),
|
|
expect = chai.expect;
|
|
|
|
var auth = require('../lib/auth');
|
|
|
|
describe('auth', function() {
|
|
it('should have a test suite', function() {
|
|
expect(true).to.be.true;
|
|
});
|
|
});
|