Skip to content

Commit ae3b975

Browse files
committed
fix: adjust Path class tests
1 parent 969226c commit ae3b975

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secjs/utils",
3-
"version": "1.5.5",
3+
"version": "1.5.7",
44
"description": "",
55
"license": "MIT",
66
"author": "João Lenon",

tests/Classes/path.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('\n Path Class', () => {
5151
expect(Path.nodeCwdPath()).toBe(myMainDistPath)
5252
expect(Path.changeBuild('/test').nodeCwdPath()).toBe(myMainPath + '/test')
5353

54-
Path.changeBuild('/dist').switchBuild().switchEnvVerify()
54+
Path.changeBuild('/dist').switchBuild()
5555

5656
process.env.NODE_TS = 'false'
5757
expect(Path.nodeCwdPath()).toBe(myMainDistPath)

tests/global/path.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe('\n Path Class Global', () => {
5252
expect(Path.nodeCwdPath()).toBe(myMainDistPath)
5353
expect(Path.changeBuild('/test').nodeCwdPath()).toBe(myMainPath + '/test')
5454

55-
Path.changeBuild('/dist').switchBuild().switchEnvVerify()
55+
Path.changeBuild('/dist').switchBuild()
5656

5757
process.env.NODE_TS = 'false'
5858
expect(Path.nodeCwdPath()).toBe(myMainDistPath)

0 commit comments

Comments
 (0)