mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 04:55:11 +00:00
19 lines
353 B
JavaScript
Executable File
19 lines
353 B
JavaScript
Executable File
'use strict';
|
|
|
|
describe('Service: session', function () {
|
|
|
|
// load the service's module
|
|
beforeEach(module('dssWebApp'));
|
|
|
|
// instantiate service
|
|
var session;
|
|
beforeEach(inject(function (_session_) {
|
|
session = _session_;
|
|
}));
|
|
|
|
it('should do something', function () {
|
|
expect(!!session).toBe(true);
|
|
});
|
|
|
|
});
|