Skip to content

Commit

Permalink
debugging test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbion committed Feb 13, 2024
1 parent 461549d commit e13cb1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,20 @@
"name": "agent-adapters",
"version": "1.0.0",
"description": "Configurable AI Agents",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"AI Agents",
"Open AI",
"AutoGen",
"AIConfig",
"Agent Protocol",
"LLM",
"AutoGPT",
"TypeScript",
"Node"
],
"scripts": {
"pretest": "npm run build && npm run lint",
"test": "jest",
Expand All @@ -21,12 +33,10 @@
"type": "git",
"url": "git+https://github.com/nalbion/agent-adapters.git"
},
"keywords": [],
"author": {
"name": "Nicholas Albion",
"email": "[email protected]"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/nalbion/agent-adapters/issues"
},
Expand Down
1 change: 1 addition & 0 deletions src/utils/fileUtils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ describe('getAbsolutePathInWorkspace', () => {
const result = getAbsolutePathInWorkspace(workspace, file);

// Then
console.info('result:', result);
expect(result.replaceAll('\\', '/').replace(/^[A-Z]:/, '')).toBe(expected);
});
});
Expand Down

0 comments on commit e13cb1c

Please sign in to comment.