Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Sep 18, 2024
1 parent 6da3242 commit 2a35fa6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tests/test-app/tests/utils/function/rendering-test.gts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** eslint-disable no-console */
import Component from '@glimmer/component';
import { cached, tracked } from '@glimmer/tracking';
import { debug } from '@glimmer/validator';
import { tracked } from '@glimmer/tracking';
import { setOwner } from '@ember/application';
import { on } from '@ember/modifier';
import { click, render, settled } from '@ember/test-helpers';
Expand Down Expand Up @@ -295,7 +295,6 @@ module('Utils | trackedFunction | rendering', function (hooks) {

get endResult() {
console.group('endResult');
console.log(this.length);

// eslint-disable-next-line no-console
console.log('this.endResult', { length: this.length, value: this.value });
Expand Down Expand Up @@ -357,12 +356,12 @@ module('Utils | trackedFunction | rendering', function (hooks) {

assert.dom('out').doesNotIncludeText('item');

await this.pauseTest();
// await this.pauseTest();
await click('#setTestCase');
await new Promise((r) => setTimeout(r, 100));
await click('#setLength');
await new Promise((r) => setTimeout(r, 100));
await this.pauseTest();
// await this.pauseTest();

assert.dom('out').hasText('item,item,item');
});
Expand Down

0 comments on commit 2a35fa6

Please sign in to comment.