Skip to content

Commit

Permalink
test: remove debounce as it's causing flakes
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and alexeagle committed Dec 6, 2018
1 parent 914f99d commit 51f4e07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';


Expand Down Expand Up @@ -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')),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';


Expand All @@ -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')),
Expand Down

0 comments on commit 51f4e07

Please sign in to comment.