mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 23:16:45 +00:00
12 lines
268 B
JavaScript
12 lines
268 B
JavaScript
'use strict';
|
|
|
|
describe('myApp.version module', function() {
|
|
beforeEach(module('myApp.version'));
|
|
|
|
describe('version service', function() {
|
|
it('should return current version', inject(function(version) {
|
|
expect(version).toEqual('0.1');
|
|
}));
|
|
});
|
|
});
|