├── .github └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── egg.json ├── expect.ts ├── expect_test.ts ├── matchers.ts ├── matchers_test.ts ├── mock.ts ├── mock_test.ts └── mod.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/README.md -------------------------------------------------------------------------------- /egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/egg.json -------------------------------------------------------------------------------- /expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/expect.ts -------------------------------------------------------------------------------- /expect_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/expect_test.ts -------------------------------------------------------------------------------- /matchers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/matchers.ts -------------------------------------------------------------------------------- /matchers_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/matchers_test.ts -------------------------------------------------------------------------------- /mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/mock.ts -------------------------------------------------------------------------------- /mock_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/mock_test.ts -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allain/expect/HEAD/mod.ts --------------------------------------------------------------------------------