Skip to content

Commit

Permalink
Merge pull request #21 from Staffbase/don-truncate-test-title
Browse files Browse the repository at this point in the history
chore: test title doesn't need truncation
  • Loading branch information
jreimone committed Jul 10, 2023
2 parents a043a87 + 401859a commit 8ac3977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Util {
const titleBase = `[${owner}/${repo}/${pr}]${prTitle}`;
const testioPayload = {
exploratory_test: {
test_title: Util.truncateString(titleBase, 80, "...", false),
test_title: titleBase,
test_environment: {
title: Util.truncateString(titleBase, 80, "[test environment]", false),
url: prepareObject.test_environment.url,
Expand Down

0 comments on commit 8ac3977

Please sign in to comment.