Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
815f17d
use standalone in Angular app
GoodDayForSurf Apr 30, 2025
f099a81
Merge branch 'dev' of https://github.com/DevExpress/devextreme-cli in…
GoodDayForSurf Apr 30, 2025
73b692e
fix schematic tests
GoodDayForSurf Apr 30, 2025
8c5b519
Merge branch 'dev' of https://github.com/DevExpress/devextreme-cli in…
GoodDayForSurf Apr 30, 2025
5225626
rebase
GoodDayForSurf Apr 30, 2025
40fda54
fix test
GoodDayForSurf Apr 30, 2025
1afef47
add angular/cli
GoodDayForSurf Apr 30, 2025
a48e465
wip. check ng test
GoodDayForSurf Apr 30, 2025
963ce49
wip. check ng test
GoodDayForSurf Apr 30, 2025
c6e72ab
wip. check ng test
GoodDayForSurf Apr 30, 2025
e60a982
wip. check ng test
GoodDayForSurf Apr 30, 2025
fe46411
Merge branch 'dev_ng_use_standalone' of https://github.com/GoodDayFor…
GoodDayForSurf Apr 30, 2025
72f17d3
fix angular tests on CI
GoodDayForSurf Apr 30, 2025
7d92176
remove unused
GoodDayForSurf May 6, 2025
c9c1e54
Merge branch 'dev' of https://github.com/DevExpress/devextreme-cli in…
GoodDayForSurf May 6, 2025
d769f7e
update screenshot
GoodDayForSurf May 6, 2025
4df57d3
fix test
GoodDayForSurf May 7, 2025
4f154c4
fix test
GoodDayForSurf May 7, 2025
df1a476
fix test increase screenshot comparing threshold
GoodDayForSurf May 7, 2025
bddba5d
fix test increase screenshot comparing threshold
GoodDayForSurf May 7, 2025
372591d
fix test increase screenshot comparing threshold
GoodDayForSurf May 7, 2025
7681e7b
Merge branch 'dev' of https://github.com/DevExpress/devextreme-cli in…
GoodDayForSurf May 8, 2025
1e68946
fix test increase screenshot comparing threshold
GoodDayForSurf May 8, 2025
29d152b
fix test increase screenshot comparing threshold
GoodDayForSurf May 8, 2025
d8ab79e
fix test increase screenshot comparing threshold
GoodDayForSurf May 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions packages/devextreme-cli/testing/app-template.test.shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {

it('Create account page', async() => {
// NOTE: Test only once
// TODO: investigate failure in material
if(!isDefaultLayout || theme === 'material') {
if(!isDefaultLayout) {
return;
}

Expand All @@ -284,8 +283,13 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
await page.waitForTimeout(3000);
const image = await takeScreenshot();

const isProblemTest = env.engine.startsWith('nextjs')
&& theme === 'material'
&& viewportName === 'large'
&& layout === 'side-nav-outer-toolbar';

compareSnapshot(image, 'create-account', {
threshold: 0.05
threshold: isProblemTest ? 0.025 : customConfig.threshold
});
});

Expand Down
Loading