Skip to content

Commit

Permalink
refactor(@angular-devkit/build-angular): move dev-server specs into a…
Browse files Browse the repository at this point in the history
… seperate directory

(cherry picked from commit ef75362)
  • Loading branch information
alan-agius4 committed Mar 4, 2022
1 parent fc38474 commit 472d468
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Page } from 'puppeteer/lib/cjs/puppeteer/common/Page';
import puppeteer from 'puppeteer/lib/cjs/puppeteer/node';
/* eslint-enable import/no-extraneous-dependencies */
import { debounceTime, switchMap, take } from 'rxjs/operators';
import { createArchitect, host } from '../../testing/test-utils';
import { createArchitect, host } from '../../../testing/test-utils';

/* eslint-disable @typescript-eslint/no-explicit-any */
declare const document: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import { DevServerBuilderOutput } from '@angular-devkit/build-angular';
import { workspaces } from '@angular-devkit/core';
import fetch from 'node-fetch'; // eslint-disable-line import/no-extraneous-dependencies
import { createArchitect, host } from '../../testing/test-utils';
import { createArchitect, host } from '../../../testing/test-utils';

describe('Dev Server Builder index', () => {
const targetSpec = { project: 'app', target: 'serve' };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Browser } from 'puppeteer/lib/cjs/puppeteer/common/Browser';
import { Page } from 'puppeteer/lib/cjs/puppeteer/common/Page';
import puppeteer from 'puppeteer/lib/cjs/puppeteer/node';
import { debounceTime, switchMap, take } from 'rxjs/operators';
import { createArchitect, host } from '../../testing/test-utils';
import { createArchitect, host } from '../../../testing/test-utils';

// eslint-disable-next-line @typescript-eslint/no-explicit-any
declare const document: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { DevServerBuilderOutput } from '@angular-devkit/build-angular';
import { tags } from '@angular-devkit/core';
import * as https from 'https';
import fetch from 'node-fetch'; // eslint-disable-line import/no-extraneous-dependencies
import { createArchitect, host } from '../../testing/test-utils';
import { createArchitect, host } from '../../../testing/test-utils';

describe('Dev Server Builder ssl', () => {
const target = { project: 'app', target: 'serve' };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Architect, BuilderRun } from '@angular-devkit/architect';
import { DevServerBuilderOutput } from '@angular-devkit/build-angular';
import { normalize, virtualFs } from '@angular-devkit/core';
import fetch from 'node-fetch'; // eslint-disable-line import/no-extraneous-dependencies
import { createArchitect, host } from '../../testing/test-utils';
import { createArchitect, host } from '../../../testing/test-utils';

describe('Dev Server Builder', () => {
const target = { project: 'app', target: 'serve' };
Expand Down

0 comments on commit 472d468

Please sign in to comment.