mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
31 lines
810 B
TypeScript
31 lines
810 B
TypeScript
|
import {it, inject, beforeEachProviders} from "@angular/core/testing";
|
||
|
import {BaseRequestOptions, Http} from "@angular/http";
|
||
|
import {MockBackend} from "@angular/http/testing";
|
||
|
import {provide} from "@angular/core";
|
||
|
import "rxjs/Rx";
|
||
|
import {NetworkService} from "../model/network/network.service";
|
||
|
import {GalleryService} from "./gallery.service";
|
||
|
|
||
|
|
||
|
describe('GalleryService', () => {
|
||
|
|
||
|
|
||
|
beforeEachProviders(() => [
|
||
|
MockBackend,
|
||
|
BaseRequestOptions,
|
||
|
provide(Http, {
|
||
|
useFactory: (backend, options) => {
|
||
|
return new Http(backend, options);
|
||
|
}, deps: [MockBackend, BaseRequestOptions]
|
||
|
}),
|
||
|
NetworkService,
|
||
|
GalleryService
|
||
|
]);
|
||
|
|
||
|
|
||
|
it('placeholder test', inject([], () => {
|
||
|
expect(true).toBe(true);
|
||
|
}));
|
||
|
|
||
|
});
|