Skip to content

Commit

Permalink
feat: multi subtopic enhancements (#1320)
Browse files Browse the repository at this point in the history
* feat(doc): Multi supports nested topics --maxmultiNestedTopicsDepth flag

* feat(doc): multi respects topic separator

* fix: maintain original multi output by default

* chore: eslintignore test fixtures

* chore: go back to ts-node

---------

Co-authored-by: Gaël Motte <gael.motte@gmail.com>
  • Loading branch information
mdonnalley and gaelmotte committed Mar 5, 2024
1 parent a80b8c7 commit 964efaf
Show file tree
Hide file tree
Showing 22 changed files with 365 additions and 377 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/lib
/templates
/tmp
/test/fixtures
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ The `test/integration` requires Github Actions to run on the various OS under te

These tests requires keys for uploading and promoting artifacts to S3 (and testing optional functions like signing).

In GHA, set `PRESERVE_ARTIFCATS` to `true` to prevent the tests from deleting the artifacts. This is useful if you want to retrieve them from their buckets to manually test on different systems.
In GHA, set `PRESERVE_ARTIFCATS` to `true` to prevent the tests from deleting the artifacts. This is useful if you want to retrieve them from their buckets to manually test on different systems.
14 changes: 3 additions & 11 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
{
"recursive": true,
"reporter": "spec",
"require": [
"test/helpers/init.js",
"ts-node/register"
],
"require": ["test/helpers/init.js", "ts-node/register"],
"timeout": 60000,
"watch-extensions": [
"ts"
],
"watch-files": [
"src",
"test"
]
"watch-extensions": ["ts"],
"watch-files": ["src", "test"]
}
Loading

0 comments on commit 964efaf

Please sign in to comment.