Skip to content

Commit

Permalink
Wrap lines
Browse files Browse the repository at this point in the history
  • Loading branch information
james-perretta committed Aug 23, 2024
1 parent 290b353 commit 4bcf7f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ export default class AGTestCommandResultDetail extends Vue implements Created{
async created() {
if (this.d_globals.user_roles.is_staff) {
let ag_test_command = await AGTestCommand.get_by_pk(this.ag_test_command_result.ag_test_command_pk);
let ag_test_command = await AGTestCommand.get_by_pk(
this.ag_test_command_result.ag_test_command_pk);
this.d_staff_description = ag_test_command.staff_description;
}
return this.get_output();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ describe('AG test case settings form tests', () => {
set_validated_input_text(internal_admin_notes_input, "Test case level description");
await wrapper.vm.$nextTick();
expect(validated_input_is_valid(internal_admin_notes_input)).toBe(true);
expect(component.d_ag_test_case!.internal_admin_notes).toEqual("Test case level description");
expect(
component.d_ag_test_case!.internal_admin_notes
).toEqual("Test case level description");

component.d_ag_test_case!.internal_admin_notes = "Another description";
await wrapper.vm.$nextTick();
Expand Down

0 comments on commit 4bcf7f7

Please sign in to comment.