Device farm: How to add NodeJS cucumber-html reports to customer artifact ?

1

Hi, I'm able to run cucumber specs (NodeJS & appium) successfully in aws device farm and framework reports generate in host machine file path: /private/tmp/scratchcd0WWN.scratch/test-packageXL7CdE/reports/html/index.html, how can I copy reports from this path location to customer artifact folder. I have included -$DEVICEFARM_LOG_DIR and $WORKING_DIRECTORY in .yml file. please help.!

asked 2 years ago410 views
1 Answer
0

Hello,

Thank you for reaching out to aws Re:Post team. I understand that you are able to successfully run test specs in aws device farm, which generates report in host machine file path.

In order to copy generated report, from host machine file path into customer artifact folder, we need to include the copy commands in the Test Spec file. For example, we can make a directory, say “TestReports" and include the below commands in the "post_test" section of Test Spec YML file to copy the file to desired location.

After our test run finishes, we can successfully collect the test reports file for our tests in the "customer artifacts" section of test reports on "DEVICEFARM_LOG_DIR/TestReports/<files>" path :

Example Command :

post_test:
    commands:
    - mkdir TestReports
    - cp -r $DEVICEFARM_TEST_PACKAGE_PATH $DEVICEFARM_LOG_DIR/TestReports


I hope this is helpful. If you experience any issue, please let us know.

AWS
SUPPORT ENGINEER
Isha_K
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions