From 08d58c54824e0f3b4b13c8354e13a2f27aac5be7 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 30 Sep 2017 12:50:03 +0200 Subject: [PATCH] Try to log out stderr on CI --- integration_tests/__tests__/request-animation_frame.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration_tests/__tests__/request-animation_frame.test.js b/integration_tests/__tests__/request-animation_frame.test.js index 383291d1f604..681859c7e062 100644 --- a/integration_tests/__tests__/request-animation_frame.test.js +++ b/integration_tests/__tests__/request-animation_frame.test.js @@ -14,6 +14,8 @@ test('requestAnimationFrame', () => { const result = runJest('request_animation_frame', ['--verbose']); const stderr = result.stderr.toString(); + console.log(stderr); + expect(stderr).toMatch('requestAnimationFrame test'); expect(result.status).toBe(0); });