├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── __snapshots__ │ ├── otherTest.ts.snap │ └── testMatrix.ts.snap ├── otherTest.ts └── testMatrix.ts ├── ideas.md ├── jest.config.js ├── package.json ├── src ├── index.ts ├── pretty-table.ts ├── symbol.ts └── typings │ └── ascii-table │ └── index.d.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__snapshots__/otherTest.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/__tests__/__snapshots__/otherTest.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/testMatrix.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/__tests__/__snapshots__/testMatrix.ts.snap -------------------------------------------------------------------------------- /__tests__/otherTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/__tests__/otherTest.ts -------------------------------------------------------------------------------- /__tests__/testMatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/__tests__/testMatrix.ts -------------------------------------------------------------------------------- /ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/ideas.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/pretty-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/src/pretty-table.ts -------------------------------------------------------------------------------- /src/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/src/symbol.ts -------------------------------------------------------------------------------- /src/typings/ascii-table/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'ascii-table' -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaldoJeffers/jest-test-matrix/HEAD/tsconfig.json --------------------------------------------------------------------------------