Skip to content

Commit 12aaad9

Browse files
committed
externalize the table definition in a specific source to make app.js smaller #601
1 parent 1f80354 commit 12aaad9

File tree

3 files changed

+1849
-1320
lines changed

3 files changed

+1849
-1320
lines changed

force-app/main/default/lwc/orgcheckApp/__tests__/orgcheckApp.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('c-orgcheck-app', () => {
4141
// Wait for the DOM to be updated
4242
await Promise.resolve().then(() => {
4343
// Main tab should have been updated to something defined
44-
expect(mainTab.activeTabValue).not.toBeUndefined();
44+
expect(mainTab.activeTabValue).toBeDefined();
4545
// 'home' is the value of the first tab which is copied in the mainTab active tab value
4646
expect(mainTab.activeTabValue).toBe('home');
4747
});

0 commit comments

Comments
 (0)