- Overview
- Prerequisite
- Getting started
- Debug/Development
-
Testing
- If you want to run a single test suite, please run
- If you want to run the specific test case within a single test suite, please run
- If you would like to run is duplicate with the cases in other test suite, you can use the below command to specify the test case in a specific suite:
- If you want to disable Featureflag to test cases with old logic
- Raising a commit
- Troubleshooting
This package is mainly for creating custom web components built with stencil.js.
vega-stencil is using eslint (config: .eslintrc.js
) along with prettier (config: .prettierrc.js
).
Make sure both tools have been set up properly in your IDE.
design token was originally stored at ../vega-design
package which is also responsible for generating corresponding CSS/JS file used by other clients including vega-stencil
.
Hence, if you want to test some change of design token and want to integrate them into vega-stencil, you need to re-run the consume command to fetch the CSS/JS files from vega-design
to vega-stencil
:
> npm run consume-design-token
Install node dependencies
> npm install
To generate a new stencil component
> npm run generate <element_tag>
Start local server to host preview your change for stencil components
> npm run start
# or
> npm run debug # no cache
To view the change in storybook
> npm run storybook
Currently, vega-stencil has two testing environments:
- Unit test env:
- In this env, we will run unit test for vega components / non-component logic (e.g.
vega-badge.spec.tsx
). - In this env, there won't be any actual HTML element during runtime and all of them will show up as
MockHTMLElement
- In this env, we will run unit test for vega components / non-component logic (e.g.
- E2E test env:
- This env is using the exact browser runtime (Chromium) to run the test, which means all the UI/UX should be the same as the real one.
- The tests we are running in this env are:
- E2E test for vega component classes (e.g.
vega-badge.e2e.ts
) - E2E test for visual regression checking (e.g.
vaga-date-picker.visual.e2e.ts
) - E2E test for accessibility checking with standard
'wcag2a', 'wcag2aa','wcag21a', 'wcag21aa'
(e.g.vega-date-picker.ada.e2e.ts
)
- E2E test for vega component classes (e.g.
The command to run both <1> and <2> is
> npm run test:base:coverage
# or
> npm run test:base:watch-all # this command will re-run when src files are changed
The command to run visual regression test only is
> npm run test:visual
> npm run test:single-suite <suite_file_name>
Example: npm run test:single-suite vega-modal.spec
> npm run test:single-case <test_case_name_regex>
Which will run only tests with a name that matches the regex. Example: npm run test:single-case "should render proper css of modal when open modal"
If you would like to run is duplicate with the cases in other test suite, you can use the below command to specify the test case in a specific suite:
> npm run test:single-suite -- --testNamePattern <test_case_name_regex>
If you need to update component images,pls delete the related object in master.json,then run below command and commit the changes:
1.<3> 2.node scripts/visual-test-screenshot-handle.js
1.install Live Server extension 2.open screenshot/compare.html by open with Live Server 3.choose All Screenshots on right top 4.click blank area under left side if the stand pic not show ,and manuel compare it
For e2e test to disable a featureflag:
describe('vega-input', () => {
let page: E2EPage;
beforeEach(async () => {
page = await newE2EPage();
await page.evaluateOnNewDocument(() => {
window['VegaDisabledFeatureKeys'] = ['VEGA_FORM.FORM_FIELD_CONTROLLER_VALIDATION'];
});
});
For spec test to disable a featureflag:
describe('vega-input', () => {
beforeAll(() => {
FeatureFlag.disable('VEGA_FORM.FORM_FIELD_CONTROLLER_VALIDATION');
});
Note:
- The main difference between unit(spec) test vs e2e test in stencil can be found here
- Once notice here is, unit test running in
stencil
is not behave the exact same as running it withjest
CLI directly (especially for non-component test suite), this is because stencil is mocking most of the html element by using its own test runtime component, hence we would suggest avoiding usingjest
CLI directly to run unit tests as you might see different testing result when run it in Github pipeline.
- In vega, we prefer to put test case into spec/unit test over e2e test unless they are not able to test in non-browser env (e.g. simulate user blur/focus event, window resize), the main reason is stencil doesn't support to run test coverage over e2e test case, hence we cannot easily tell the branch inside component is covered properly by e2e test.
- In the scenario that you have to use e2e test to cover code branch, please use istanbul/ignoring-code-for-coverage and put additional comment regarding how this branch is covered in e2e test to skip the code for coverage checking. For example:
- in
vega-stencil/src/components/vega-carousel/vega-carousel.tsx
// ... /** * The below method is e2e-test covered in * @see{module:vega-carousel-e2e-render} */ /* istanbul ignore next */ @Watch('perPage') onPerPagePropsChange(): void { this.resizeWindowHelper(); this.applySpacingHelper(); } // ...
- and the jsdoc module
module:vega-carousel-e2e-render
is defined invega-stencil/src/components/vega-carousel/test/vega-carousel.e2e.ts
describe('vega-carousel', () => { /** @module vega-carousel-e2e-render */ it('renders', async () => { const page: E2EPage = await newE2EPage(); await page.setContent('<vega-carousel></vega-carousel>'); const element: E2EElement = await page.find('vega-carousel'); expect(element).toHaveClass('hydrated'); }); });
- in
Make sure you have passed the necessary pre commit check by running
> npm run pre-release
Once the above command succeeded, run this command to build the artifacts for releasing
> npm run release
This is because the current stencil build in your workspace is staled and you need to re-build the artifacts by running yarn run release
.