├── .github ├── FUNDING.yml └── workflows │ └── pull-request.yml ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── package.json ├── rescript.json ├── src ├── Zora.mjs └── Zora.res └── tests ├── assertions.test.mjs ├── assertions.test.res ├── ignoreValue.test.mjs ├── ignoreValue.test.res ├── multiple_blocking.test.mjs ├── multiple_blocking.test.res ├── parallel.test.mjs ├── parallel.test.res ├── simple.mjs ├── simple.res ├── skip.test.mjs ├── skip.test.res ├── standaloneParallel.mjs └── standaloneParallel.res /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /.github/ 2 | /lib/ 3 | .bsb.lock 4 | .merlin 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/package.json -------------------------------------------------------------------------------- /rescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/rescript.json -------------------------------------------------------------------------------- /src/Zora.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/src/Zora.mjs -------------------------------------------------------------------------------- /src/Zora.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/src/Zora.res -------------------------------------------------------------------------------- /tests/assertions.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/assertions.test.mjs -------------------------------------------------------------------------------- /tests/assertions.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/assertions.test.res -------------------------------------------------------------------------------- /tests/ignoreValue.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/ignoreValue.test.mjs -------------------------------------------------------------------------------- /tests/ignoreValue.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/ignoreValue.test.res -------------------------------------------------------------------------------- /tests/multiple_blocking.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/multiple_blocking.test.mjs -------------------------------------------------------------------------------- /tests/multiple_blocking.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/multiple_blocking.test.res -------------------------------------------------------------------------------- /tests/parallel.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/parallel.test.mjs -------------------------------------------------------------------------------- /tests/parallel.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/parallel.test.res -------------------------------------------------------------------------------- /tests/simple.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/simple.mjs -------------------------------------------------------------------------------- /tests/simple.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/simple.res -------------------------------------------------------------------------------- /tests/skip.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/skip.test.mjs -------------------------------------------------------------------------------- /tests/skip.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/skip.test.res -------------------------------------------------------------------------------- /tests/standaloneParallel.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/standaloneParallel.mjs -------------------------------------------------------------------------------- /tests/standaloneParallel.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dusty-phillips/rescript-zora/HEAD/tests/standaloneParallel.res --------------------------------------------------------------------------------