Delete self contained Thunder Tests

Back to .net8.0
api/v4/InfinityQS
ApiExplorerSettings
Wafer Counter
Color Sorting
This commit is contained in:
2024-03-13 13:15:56 -07:00
parent 7e16ee7f98
commit 127634f5ab
952 changed files with 205130 additions and 914 deletions

View File

@ -0,0 +1,23 @@
import { newE2EPage } from "@stencil/core/testing";
describe('ifx-radio-button', () => {
it('renders', async () => {
const page = await newE2EPage();
await page.setContent('<ifx-radio-button></ifx-radio-button>');
const element = await page.find('ifx-radio-button');
expect(element).toHaveClass('hydrated');
});
it('handleRadioButtonClick should emit ifxChange event if not disabled, not in errorv or not already checked', async () => {
const page = await newE2EPage();
await page.setContent('<ifx-radio-button>Test</ifx-radio-button>');
const component = await page.find('ifx-radio-button');
component.setProperty('disabled', false);
component.setProperty('error', false);
component.setProperty('value', false);
await page.waitForChanges();
const changeSpy = await component.spyOnEvent('ifxChange');
const element = await page.find('ifx-radio-button >>> .label');
await element.click();
expect(changeSpy).toHaveReceivedEventDetail(true);
});
});
//# sourceMappingURL=radio-button.e2e.js.map