Files
FastDeploy/examples/application/js/package/packages/paddlejs-models/gesture/test/index.test.ts
chenqianhe f2619b0546 [Other] Refactor js submodule (#415)
* Refactor js submodule

* Remove change-log

* Update ocr module

* Update ocr-detection module

* Update ocr-detection module

* Remove change-log
2022-10-23 14:05:13 +08:00

13 lines
246 B
TypeScript

import assert from 'assert'
describe('Example:', () => {
/**
* Example
*/
describe('ExampleTest', () => {
test('Hello World!', () => {
assert.strictEqual('Hello World!', 'Hello World!')
})
})
})