Skip to content

Commit b0943ff

Browse files
committed
start of performance test
1 parent 37d97c4 commit b0943ff

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)