Skip to content

Commit

Permalink
test(ui): add render html utils (2) (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil authored Oct 4, 2024
1 parent cc97e46 commit ae42d45
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 10 deletions.
58 changes: 49 additions & 9 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,66 @@
":construction_worker: CI":
- changed-files:
- any-glob-to-any-file: ".github/**"
":jar: api":
":memo: documentation":
- changed-files:
- any-glob-to-any-file: "**/*.md"
":traffic_light: e2e":
- changed-files:
- any-glob-to-any-file: "e2e/**/*"
- any-glob-to-any-file: "**/*.e2e.test"
":test_tube: unit test":
- changed-files:
- any-glob-to-any-file: "**/*.test"

#

":globe_with_meridians: api":
- changed-files:
- any-glob-to-any-file:
- "packages/~/app/api/**/*"
- "packages/~/*/api/**/*"
":file_cabinet: database":
- changed-files:
- any-glob-to-any-file:
- "packages/~/infra/*/database/**/*"
- "packages/~/*/repository/**/*"
":building_construction: infra":
- changed-files:
- any-glob-to-any-file: "packages/~/infra/**/*"
":books: lib":
- changed-files:
- any-glob-to-any-file: "packages/~/*/api/**/*"
- any-glob-to-any-file:
- "packages/~/infra/*/lib/**/*"
- "packages/~/*/lib/**/*"
":lipstick: ui":
- changed-files:
- any-glob-to-any-file:
- "packages/~/app/ui**/*"
- "packages/~/app/ui/**/*"
- "packages/~/*/ui/**/*"
":memo: documentation":

#

"scope: app":
- changed-files:
- any-glob-to-any-file: "**/*.md"
":test_tube: e2e":
- any-glob-to-any-file: "packages/~/app/**/*"
"scope: auth":
- changed-files:
- any-glob-to-any-file: "e2e/**/*"
- any-glob-to-any-file: "packages/~/auth/**/*"
"scope: config":
- changed-files:
- any-glob-to-any-file: "packages/~/config/**/*"
"scope: moderations":
- changed-files:
- any-glob-to-any-file: "packages/~/moderations/**/*"
"scope: organizations":
- changed-files:
- any-glob-to-any-file: "packages/~/organizations/**/*"
"scope: proxy":
- changed-files:
- any-glob-to-any-file: "packages/~/proxy/**/*"
"scope: users":
- changed-files:
- any-glob-to-any-file: "packages/~/users/**/*"
"scope: organizations":
"scope: welcome":
- changed-files:
- any-glob-to-any-file: "packages/~/organizations/**/*"
- any-glob-to-any-file: "packages/~/welcome/**/*"
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
workflow_dispatch:

env:
TZ: Europe/Paris

jobs:
build:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion packages/~/organizations/ui/src/info/About.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ test("render about section", async () => {
id="about_section"
/>,
),
).toBeString();
).toMatchSnapshot();
});

0 comments on commit ae42d45

Please sign in to comment.