We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d97c4 commit b0943ffCopy full SHA for b0943ff
packages/core/src/test/codewhisperer/zipcode.test.ts
@@ -0,0 +1,19 @@
1
+/*!
2
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * SPDX-License-Identifier: Apache-2.0
4
+ */
5
+import assert from 'assert'
6
+import * as sinon from 'sinon'
7
+import { performanceTest } from '../../shared/performance/performance'
8
+
9
+describe('zipCode', function () {
10
+ describe('performance tests', function () {
11
+ performanceTest({}, 'many small files in zip', function () {
12
+ return {
13
+ setup: async () => {},
14
+ execute: async () => {},
15
+ verify: async () => {},
16
+ }
17
+ })
18
19
+})
0 commit comments