Skip to content

Commit db59ad1

Browse files
committed
test: add minimal smoke test to enable CI test step
1 parent ae6c0d3 commit db59ad1

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Tests
4747
env:
4848
CI: true
49-
run: npm test -- --watchAll=false --passWithNoTests
49+
run: npm test -- --watchAll=false
5050

5151
- name: Build (CRA)
5252
env:

src/__tests__/smoke.test.jsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*
2+
* Copyright (C) 2025 Dimitrios S. Sfyris
3+
* SPDX-License-Identifier: GPL-3.0-or-later
4+
*/
5+
test('smoke', () => {
6+
expect(true).toBe(true);
7+
});

0 commit comments

Comments
 (0)