mirror of
https://github.com/actions/github-script.git
synced 2026-01-13 18:28:21 +00:00
Apply prettier formatting to test file
Co-authored-by: TingluoHuang <1750815+TingluoHuang@users.noreply.github.com>
This commit is contained in:
@@ -24,7 +24,9 @@ describe('getUserAgentWithOrchestrationId', () => {
|
||||
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9.-]/g, '')
|
||||
const result = `${baseUserAgent} orchestration-id/${sanitized}`
|
||||
|
||||
expect(result).toBe('actions/github-script orchestration-id/test-orchestration-123')
|
||||
expect(result).toBe(
|
||||
'actions/github-script orchestration-id/test-orchestration-123'
|
||||
)
|
||||
})
|
||||
|
||||
test('sanitizes orchestration ID by removing special characters', () => {
|
||||
@@ -35,7 +37,9 @@ describe('getUserAgentWithOrchestrationId', () => {
|
||||
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9.-]/g, '')
|
||||
const result = `${baseUserAgent} orchestration-id/${sanitized}`
|
||||
|
||||
expect(result).toBe('actions/github-script orchestration-id/testorchestration123abcxyz')
|
||||
expect(result).toBe(
|
||||
'actions/github-script orchestration-id/testorchestration123abcxyz'
|
||||
)
|
||||
})
|
||||
|
||||
test('preserves dots and hyphens in orchestration ID', () => {
|
||||
@@ -46,7 +50,9 @@ describe('getUserAgentWithOrchestrationId', () => {
|
||||
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9.-]/g, '')
|
||||
const result = `${baseUserAgent} orchestration-id/${sanitized}`
|
||||
|
||||
expect(result).toBe('actions/github-script orchestration-id/test.orchestration-123')
|
||||
expect(result).toBe(
|
||||
'actions/github-script orchestration-id/test.orchestration-123'
|
||||
)
|
||||
})
|
||||
|
||||
test('does not append orchestration ID when ACTIONS_ORCHESTRATION_ID is not set', () => {
|
||||
@@ -55,7 +61,9 @@ describe('getUserAgentWithOrchestrationId', () => {
|
||||
|
||||
// Simulate the logic from getUserAgentWithOrchestrationId
|
||||
const orchestrationId = process.env['ACTIONS_ORCHESTRATION_ID']
|
||||
const result = orchestrationId ? `${baseUserAgent} orchestration-id/${orchestrationId}` : baseUserAgent
|
||||
const result = orchestrationId
|
||||
? `${baseUserAgent} orchestration-id/${orchestrationId}`
|
||||
: baseUserAgent
|
||||
|
||||
expect(result).toBe('actions/github-script')
|
||||
})
|
||||
@@ -66,7 +74,9 @@ describe('getUserAgentWithOrchestrationId', () => {
|
||||
|
||||
// Simulate the logic from getUserAgentWithOrchestrationId
|
||||
const sanitized = orchestrationId.replace(/[^a-zA-Z0-9.-]/g, '')
|
||||
const result = sanitized ? `${baseUserAgent} orchestration-id/${sanitized}` : baseUserAgent
|
||||
const result = sanitized
|
||||
? `${baseUserAgent} orchestration-id/${sanitized}`
|
||||
: baseUserAgent
|
||||
|
||||
expect(result).toBe('actions/github-script')
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user