-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore/remove localhost url #228
base: main
Are you sure you want to change the base?
Changes from 4 commits
90702e7
5f10d65
b25ace3
f1548d2
4543ff5
34e9caf
aa2e9c4
0dd6626
d6d43b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,8 +1,13 @@ | ||||||||||||||||||||||||||||||||||||||||
import { CrossEnvConfig } from '@flatfile/cross-env-config' | ||||||||||||||||||||||||||||||||||||||||
import { FlatfileListener } from './flatfile.listener' | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
describe('Client', () => { | ||||||||||||||||||||||||||||||||||||||||
let testFn: jest.Mock | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if (CrossEnvConfig.get('AGENT_INTERNAL_URL') == null) { | ||||||||||||||||||||||||||||||||||||||||
process.env.AGENT_INTERNAL_URL = 'agent_internal_url' | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+7
to
+9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Move environment setup into appropriate test lifecycle hooks The environment variable setup should be moved into appropriate test lifecycle hooks (like Consider this approach: - if (CrossEnvConfig.get('AGENT_INTERNAL_URL') == null) {
- process.env.AGENT_INTERNAL_URL = 'agent_internal_url'
- }
+ let originalAgentInternalUrl: string | undefined;
+
+ beforeAll(() => {
+ originalAgentInternalUrl = process.env.AGENT_INTERNAL_URL;
+ if (CrossEnvConfig.get('AGENT_INTERNAL_URL') == null) {
+ process.env.AGENT_INTERNAL_URL = 'agent_internal_url'
+ }
+ });
+
+ afterAll(() => {
+ if (originalAgentInternalUrl === undefined) {
+ delete process.env.AGENT_INTERNAL_URL;
+ } else {
+ process.env.AGENT_INTERNAL_URL = originalAgentInternalUrl;
+ }
+ }); 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
beforeEach(() => { | ||||||||||||||||||||||||||||||||||||||||
testFn = jest.fn() | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
|
@@ -150,4 +155,13 @@ describe('Client', () => { | |||||||||||||||||||||||||||||||||||||||
expect(testFn).toHaveBeenCalledTimes(3) | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
describe('AGENT_INTERNAL_URL', () => { | ||||||||||||||||||||||||||||||||||||||||
test('throws error when not set', () => { | ||||||||||||||||||||||||||||||||||||||||
delete process.env.AGENT_INTERNAL_URL | ||||||||||||||||||||||||||||||||||||||||
expect(() => new FlatfileListener()).toThrow( | ||||||||||||||||||||||||||||||||||||||||
'AGENT_INTERNAL_URL must be set in the environment' | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove console.log statement
Production code should not contain console.log statements, especially ones that might expose sensitive configuration information. Consider using a proper logging system if debugging is needed.
- console.log('FLATFILE_API_URL', FLATFILE_API_URL)
📝 Committable suggestion