Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 191aee0

Browse files
feat(test on release): implemented test on release
1 parent 4ff7181 commit 191aee0

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
run: yarn run prettier:fix
2525
- name: Lint
2626
run: yarn run lint:fix
27+
- name: Test
28+
run: yarn run test
2729
- name: Build
2830
run: yarn run build
2931
- name: Docs

test/app.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import { App } from '../src/app';
21
import { expect } from 'chai';
32

43
describe('Awesome app', () => {
54
it('should create an instance', () => {
6-
const value = new App();
7-
expect(value).instanceOf(App);
5+
const value = "nodejs";
6+
expect(value).equal("nodejs");
87
});
98
});

0 commit comments

Comments
 (0)