Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0f7992c
vitest
A77AY Jun 23, 2026
3a6343b
Refactor tests to use Vitest and update configurations
A77AY Jun 23, 2026
2222fe8
chore: add CI test script and initial app spec file
A77AY Jun 23, 2026
fcfccfa
chore: update CI workflow to include Playwright tests
A77AY Jun 23, 2026
c6b532c
chore: update @vality/domain-proto version in package.json and packag…
A77AY Jun 25, 2026
cf7c34a
chore: add TODO comment for angular-monaco-editor documentation
A77AY Jun 25, 2026
79391e9
chore: add action button to Shops page layout
A77AY Jun 25, 2026
7199573
chore: update eslint-plugin-import to eslint-plugin-import-x version …
A77AY Jun 25, 2026
a4afbd3
feat: enhance Shops component with create functionality and update ap…
A77AY Jun 25, 2026
7cc2f0d
feat: update date handling in ShopsComponent to use getNoTimeZoneIsoS…
A77AY Jun 28, 2026
f786f41
feat: add CreateShopDialog component and integrate with ShopsComponent
A77AY Jun 28, 2026
7d0548d
feat: add 'Edit full' button and dialog functionality in CreateShopDi…
A77AY Jun 28, 2026
13ce9c3
feat: implement CreateShopDialog functionality and update related com…
A77AY Jun 29, 2026
99e437d
feat: enhance CreateShopDialog with preset selection and update app c…
A77AY Jun 29, 2026
e07fbc7
feat: refactor CreateShopDialogComponent to remove OnInit and update …
A77AY Jun 29, 2026
6ddf1f5
feat: add description field to CreateShopDialog and update form handling
A77AY Jun 29, 2026
ee6a83c
feat: implement CreateWalletDialog component and integrate with Walle…
A77AY Jun 29, 2026
38141b8
feat: update @vality/domain-proto version in package.json and package…
A77AY Jun 29, 2026
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
4 changes: 4 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ jobs:
- uses: valitydev/action-frontend/setup-install@v3
with:
force: true
- name: Install Playwright
run: npx playwright install chromium --with-deps
- name: Check
run: npm run check
- name: Test
run: npm run test:ci
- name: Build
run: npm run build
- name: Build MatEz Library
Expand Down
36 changes: 22 additions & 14 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@
"optimization": false,
"extractLicenses": false,
"sourceMap": true
},
"testing": {
"aot": false,
"optimization": false,
"extractLicenses": false,
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"polyfills": ["zone.js", "zone.js/testing"]
}
},
"defaultConfiguration": "production"
Expand All @@ -74,18 +86,12 @@
"builder": "@angular/build:extract-i18n"
},
"test": {
"builder": "@angular/build:karma",
"builder": "@angular/build:unit-test",
"options": {
"polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"inlineStyleLanguage": "scss",
"assets": [
{
"glob": "**/*",
"input": "public"
}
],
"styles": ["src/styles/styles.scss"]
"buildTarget": ":build:testing",
"runner": "vitest",
"browsers": ["chromium"]
}
},
"lint": {
Expand Down Expand Up @@ -116,10 +122,11 @@
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular/build:karma",
"builder": "@angular/build:unit-test",
"options": {
"tsConfig": "projects/matez/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"]
"runner": "vitest",
"browsers": ["chromium"]
}
},
"lint": {
Expand Down Expand Up @@ -150,10 +157,11 @@
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular/build:karma",
"builder": "@angular/build:unit-test",
"options": {
"tsConfig": "projects/ng-thrift/tsconfig.spec.json",
"polyfills": ["zone.js", "zone.js/testing"]
"runner": "vitest",
"browsers": ["chromium"]
}
},
"lint": {
Expand Down
45 changes: 23 additions & 22 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,35 @@
"useGitignore": true,
"language": "en,ru",
"words": [
"progressable",
"timespan",
"vhosts",
"packagr",
"ngneat",
"matero",
"titlecase",
"dinero",
"papaparse",
"unparse",
"Wachter",
"vality",
"valitydev",
"Magista",
"Machinegun",
"authorisation",
"preauthorization",
"submain",
"autorenew",
"chargeback",
"chargebacks",
"matez",
"eazy",
"rreserve",
"cmdk",
"dinero",
"dpan",
"eazy",
"Machinegun",
"Magista",
"matero",
"matez",
"matv",
"autorenew",
"ngneat",
"packagr",
"papaparse",
"preauthorization",
"progressable",
"refless",
"cmdk",
"rreserve",
"submain",
"termset",
"timespan",
"titlecase",
"unparse",
"vality",
"valitydev",
"vhosts",
"Wachter",
"webhooker"
]
}
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const eslint = require('@eslint/js');
const tseslint = require('typescript-eslint');
const angular = require('angular-eslint');
const importPlugin = require('eslint-plugin-import');
const importPlugin = require('eslint-plugin-import-x');
const unusedImportsPlugin = require('eslint-plugin-unused-imports');
const pathsPlugin = require('eslint-plugin-paths');

Expand Down
Loading
Loading