Skip to content

Commit

Permalink
#118 - fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Giek committed Jan 19, 2025
1 parent d6031f2 commit 0964c76
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/main/environment/service/system-variable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ describe('getSystemVariable()', () => {

// Assert
expect(result.key).toBe(key);
expect(result.isActive).toBe(true);
expect(result.value).toBeDefined();
expect(result.description).toBeDefined();
});
Expand Down
1 change: 0 additions & 1 deletion src/main/import/service/postman-importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export class PostmanImporter implements CollectionImporter {
variable.id,
{
value: variable.toString(),
isActive: !variable.disabled,
},
] as [string, VariableObject]
);
Expand Down

0 comments on commit 0964c76

Please sign in to comment.