Skip to content

Commit 12e07e2

Browse files
committed
reverse
1 parent 34683ea commit 12e07e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/proxy/cdk-requests-go-through-a-proxy-when-configured.integtest.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@ integTest('requests go through a proxy when configured',
3636
const urls = requests.map(req => req.url);
3737
// eslint-disable-next-line no-console
3838
console.log(JSON.stringify(urls));
39+
// eslint-disable-next-line no-console
40+
console.log(JSON.stringify(urls.reverse()))
3941

4042
const urls2 = urls.filter(u => u.startsWith('https://cli.cdk.dev'));
4143
// eslint-disable-next-line no-console
42-
console.log(JSON.stringify(urls2));
44+
console.log(urls2);
4345

4446
expect(urls)
4547
.toContain('https://cli.cdk.dev-tools.aws.dev/notices.json');

0 commit comments

Comments
 (0)