mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 18:43:42 +08:00
test: remove debounce as it's causing flakes
This commit is contained in:
parent
914f99d75e
commit
51f4e075db
@ -8,7 +8,7 @@
|
||||
|
||||
import { runTargetSpec } from '@angular-devkit/architect/testing';
|
||||
import { join, virtualFs } from '@angular-devkit/core';
|
||||
import { debounceTime, take, tap } from 'rxjs/operators';
|
||||
import { take, tap } from 'rxjs/operators';
|
||||
import { browserTargetSpec, host, outputPath } from '../utils';
|
||||
|
||||
|
||||
@ -82,7 +82,6 @@ describe('Browser Builder allow js', () => {
|
||||
|
||||
let buildCount = 1;
|
||||
runTargetSpec(host, browserTargetSpec, overrides).pipe(
|
||||
debounceTime(1000),
|
||||
tap(() => {
|
||||
const content = virtualFs.fileBufferToString(
|
||||
host.scopedSync().read(join(outputPath, 'main.js')),
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
import { runTargetSpec } from '@angular-devkit/architect/testing';
|
||||
import { join, virtualFs } from '@angular-devkit/core';
|
||||
import { debounceTime, take, tap } from 'rxjs/operators';
|
||||
import { take, tap } from 'rxjs/operators';
|
||||
import { browserTargetSpec, host, outputPath } from '../utils';
|
||||
|
||||
|
||||
@ -32,7 +32,6 @@ describe('Browser Builder resolve json module', () => {
|
||||
|
||||
let buildCount = 1;
|
||||
runTargetSpec(host, browserTargetSpec, overrides).pipe(
|
||||
debounceTime(1000),
|
||||
tap(() => {
|
||||
const content = virtualFs.fileBufferToString(
|
||||
host.scopedSync().read(join(outputPath, 'main.js')),
|
||||
|
Loading…
x
Reference in New Issue
Block a user