Skip to content

Commit

Permalink
test: Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taorepoara committed Oct 6, 2023
1 parent ae7347c commit 288b1f5
Show file tree
Hide file tree
Showing 6 changed files with 5,220 additions and 4,858 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/lenra-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
uses: ndeloof/[email protected]
- run: docker-compose --version
- name: Install Lenra CLI
run: wget -c https://github.com/lenra-io/lenra_cli/releases/latest/download/lenra-linux-x86_64.tar.gz -O - | tar -xz
run: wget -c https://github.com/lenra-io/lenra_cli/releases/latest/download/lenra-linux-x86_64 -O lenra
- name: Make Lenra CLI executable
run: chmod +x lenra
- name: Build app
run: ./lenra build
2 changes: 1 addition & 1 deletion src/views/pages/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function ([favorite], /* _props, */{ context: { pathParams } })
).onPressed("@lenra:navTo", { path: openfeedbacks[session.attributes.key] }),
])
.spacing(16),
View(views.personnalNotes).data(DataApi.collectionName(Note), { user: "@me", session: session.attributes.key }).props({ session: session.attributes.key }),
View("personnalNotes").find(Note, { user: "@me", session: session.attributes.key }).props({ session: session.attributes.key }),
])
.direction("vertical")
.spacing(16)
Expand Down
Loading

0 comments on commit 288b1f5

Please sign in to comment.