Skip to content

Commit

Permalink
feat(angular-table): skip test for custom component
Browse files Browse the repository at this point in the history
  • Loading branch information
merto20 committed May 30, 2024
1 parent 9f3b59e commit 72ac9ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/angular-table/src/__tests__/flex-render.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Component, ViewChild, input, type TemplateRef } from '@angular/core'
import { TestBed, type ComponentFixture } from '@angular/core/testing'
import { createColumnHelper } from '@tanstack/table-core'
import { skip } from 'node:test'
import { describe, expect, test } from 'vitest'
import {
FlexRenderComponent,
Expand Down Expand Up @@ -115,9 +116,9 @@ describe('FlexRenderDirective', () => {
expect(fixture.nativeElement.textContent).toEqual('Updated value')
})

// Skipq for now, test framework (using ComponentRef.setInput) cannot recognize signal inputs
// Skip for now, test framework (using ComponentRef.setInput) cannot recognize signal inputs
// as component inputs
it.skip('should render custom components', () => {
skip('should render custom components', () => {
@Component({
template: `{{ row().property }}`,
standalone: true,
Expand Down

0 comments on commit 72ac9ca

Please sign in to comment.