Skip to content

Commit

Permalink
Merge branch 'release/release/0.13.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Sep 5, 2023
2 parents 6ebc60e + 115d4bf commit 46f46fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zeed",
"type": "module",
"version": "0.13.3",
"version": "0.13.4",
"description": "🌱 Simple foundation library",
"author": {
"name": "Dirk Holtwick",
Expand Down
15 changes: 8 additions & 7 deletions src/node/files.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ describe('files.spec', () => {
"glob.spec.ts",
"glob.ts",
"index.ts",
"log-context-node.ts",
"log-file.spec.ts",
"log-file.ts",
"log-node.spec.ts",
"log-node.ts",
"log-util.spec.ts",
"log-util.ts",
"log/index.ts",
"log/log-context-node.ts",
"log/log-file.spec.ts",
"log/log-file.ts",
"log/log-node.spec.ts",
"log/log-node.ts",
"log/log-util.spec.ts",
"log/log-util.ts",
]
`)
})
Expand Down
2 changes: 1 addition & 1 deletion src/node/log/log-util.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getSourceLocation, getStackLlocationList } from './log-util'
describe('log-util', () => {
test('should find correct source file line', () => {
const source = getSourceLocation(1, true)
expect(source.startsWith('src/node/log-util.spec.ts:')).toBe(true)
expect(source.startsWith('src/node/log/log-util.spec.ts:')).toBe(true)
})

test('should parse stack', () => {
Expand Down

0 comments on commit 46f46fa

Please sign in to comment.