Skip to content

Commit

Permalink
ci: fix await fs.stat (#258)
Browse files Browse the repository at this point in the history
<!--
Thank you for your pull request. Please review below requirements.
Bug fixes and new features should include tests and possibly benchmarks.
Contributors guide:
https://github.com/eggjs/egg/blob/master/CONTRIBUTING.md

感谢您贡献代码。请确认下列 checklist 的完成情况。
Bug 修复和新功能必须包含测试,必要时请附上性能测试。
Contributors guide:
https://github.com/eggjs/egg/blob/master/CONTRIBUTING.md
-->

##### Checklist
<!-- Remove items that do not apply. For completed items, change [ ] to
[x]. -->

- [ ] `npm test` passes
- [ ] tests and/or benchmarks are included
- [ ] documentation is changed or added
- [ ] commit message follows commit guidelines

##### Affected core subsystem(s)
<!-- Provide affected core subsystem(s). -->


##### Description of change
<!-- Provide a description of the change below this comment. -->
  • Loading branch information
killagu committed Mar 22, 2024
1 parent f68502f commit 316a009
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ Generate code for @eggjs/tegg-dal-plugin
egg-bin dal gen
```

dal document please read [tegg doc](https://github.com/eggjs/tegg/tree/master/plugin/dal).
Dal document please read [tegg doc](https://github.com/eggjs/tegg/tree/master/plugin/dal).

## License

Expand Down
2 changes: 1 addition & 1 deletion test/lib/cmd/dal.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('test/lib/cmd/dal.test.js', () => {
'app/modules/dal/dal/structure/Foo.json',
'app/modules/dal/dal/structure/Foo.sql',
]) {
assert.ok(fs.stat(path.join(cwd, file)));
assert.ok(await fs.stat(path.join(cwd, file)));
}
});
});
Expand Down

0 comments on commit 316a009

Please sign in to comment.