Make async, and test both wasm and asm using jest

This commit is contained in:
Nick Gerleman
2022-12-22 05:49:05 -08:00
parent 09f0869262
commit 5561d9e651
33 changed files with 1537 additions and 248 deletions

14
javascript/jest.config.js Normal file
View File

@@ -0,0 +1,14 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
module.exports = {
setupFiles: ["./jest.setup.js"],
testRegex: '/tests/Facebook.Yoga/.*\\.js$',
watchman: false,
}