|
1 |
| -import {TestBed} from '@angular/core/testing'; |
2 |
| -import {parseISO} from 'date-fns'; |
3 |
| -import {Author} from '../../test/models/author.model'; |
4 |
| -import {Chapter} from '../../test/models/chapter.model'; |
5 |
| -import {AUTHOR_API_VERSION, AUTHOR_MODEL_ENDPOINT_URL, CustomAuthor} from '../../test/models/custom-author.model'; |
6 |
| -import {AUTHOR_BIRTH, AUTHOR_ID, AUTHOR_NAME, BOOK_TITLE, getAuthorData} from '../../test/fixtures/author.fixture'; |
7 |
| -import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing'; |
8 |
| -import {API_VERSION, BASE_URL, Datastore} from '../../test/datastore.service'; |
9 |
| -import {ErrorResponse} from '../models/error-response.model'; |
10 |
| -import {getSampleBook} from '../../test/fixtures/book.fixture'; |
11 |
| -import {Book} from '../../test/models/book.model'; |
12 |
| -import {CrimeBook} from '../../test/models/crime-book.model'; |
13 |
| -import { |
14 |
| - API_VERSION_FROM_CONFIG, |
15 |
| - BASE_URL_FROM_CONFIG, |
16 |
| - DatastoreWithConfig |
17 |
| -} from '../../test/datastore-with-config.service'; |
18 |
| -import {HttpHeaders} from '@angular/common/http'; |
19 |
| -import {Thing} from '../../test/models/thing'; |
20 |
| -import {getSampleThing} from '../../test/fixtures/thing.fixture'; |
21 |
| -import {ModelConfig} from '../interfaces/model-config.interface'; |
22 |
| -import {JsonApiQueryData} from '../models/json-api-query-data'; |
| 1 | +import { TestBed } from '@angular/core/testing'; |
| 2 | +import { parseISO } from 'date-fns'; |
| 3 | +import { Author } from '../../test/models/author.model'; |
| 4 | +import { Chapter } from '../../test/models/chapter.model'; |
| 5 | +import { AUTHOR_API_VERSION, AUTHOR_MODEL_ENDPOINT_URL, CustomAuthor } from '../../test/models/custom-author.model'; |
| 6 | +import { AUTHOR_BIRTH, AUTHOR_ID, AUTHOR_NAME, BOOK_TITLE, getAuthorData } from '../../test/fixtures/author.fixture'; |
| 7 | +import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing'; |
| 8 | +import { API_VERSION, BASE_URL, Datastore } from '../../test/datastore.service'; |
| 9 | +import { ErrorResponse } from '../models/error-response.model'; |
| 10 | +import { getSampleBook } from '../../test/fixtures/book.fixture'; |
| 11 | +import { Book } from '../../test/models/book.model'; |
| 12 | +import { CrimeBook } from '../../test/models/crime-book.model'; |
| 13 | +import { API_VERSION_FROM_CONFIG, BASE_URL_FROM_CONFIG, DatastoreWithConfig } from '../../test/datastore-with-config.service'; |
| 14 | +import { HttpHeaders } from '@angular/common/http'; |
| 15 | +import { Thing } from '../../test/models/thing'; |
| 16 | +import { getSampleThing } from '../../test/fixtures/thing.fixture'; |
| 17 | +import { ModelConfig } from '../interfaces/model-config.interface'; |
| 18 | +import { JsonApiQueryData } from '../models/json-api-query-data'; |
23 | 19 |
|
24 | 20 | let datastore: Datastore;
|
25 | 21 | let datastoreWithConfig: DatastoreWithConfig;
|
|
0 commit comments