You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerbi-docs/developer/visuals/power-bi-custom-visuals-certified.md
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -76,9 +76,6 @@ Make sure that the following commands don't return any errors.
76
76
*`npm audit` - Must not return any warnings with high or moderate level.
77
77
*`ESlint` with the [required configuration](https://www.npmjs.com/package/eslint-plugin-powerbi-visuals). This command must not return any lint errors.
78
78
79
-
>[!NOTE]
80
-
> We're in the process of migrating from TSlint to ESLint. Visuals using TSlint will be accepted for certification until March 2023. After that, ESlint will be required.
81
-
82
79
### Compiling requirements
83
80
84
81
Use the latest version of [powerbi-visuals-tools](https://www.npmjs.com/package/powerbi-visuals-tools) to write the Power BI visual.
Copy file name to clipboardExpand all lines: powerbi-docs/developer/visuals/unit-tests-introduction.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.reviewer: tebercov
7
7
ms.service: powerbi
8
8
ms.subservice: powerbi-custom-visuals
9
9
ms.topic: tutorial
10
-
ms.date: 12/1/2023
10
+
ms.date: 12/1/2024
11
11
#customer intent: As a Power BI visual developer, I want to learn how to write unit tests for my visual so that I can ensure the visual works as expected.
12
12
---
13
13
@@ -422,7 +422,7 @@ export class SampleBarChartDataBuilder extends TestDataViewBuilder {
422
422
423
423
The `SampleBarChartDataBuilder` class extends `TestDataViewBuilder` and implements the abstract method `getDataView`.
424
424
425
-
When you put data into data-field buckets, Power BI produces a categorical `dataview` object that's based on your data.
425
+
When you put data into data-field buckets, Power BI produces a categorical `dataview` object based on your data.
426
426
427
427
:::image type="content" source="media/unit-tests-introduction/fields-buckets.png" alt-text="Screenshot of Power BI, which shows the data fields buckets are empty.":::
428
428
@@ -621,7 +621,7 @@ npm run test
621
621
> [!NOTE]
622
622
> You must install Google Chrome locally.
623
623
624
-
In the command-line window, you'll get following output:
624
+
In the command-line window, you get following output:
0 commit comments