Sha256: 3b3c8d18730a8777fe79ddf85cced62ba94bc841aa0199b9981b3960992c1738

Contents?: true

Size: 775 Bytes

Versions: 295

Compression:

Stored size: 775 Bytes

Contents

Execute the tests with:

```bash
$ yarn test
```

Be sure your code follows best practices and coding styles, as other users do, with
TSLint, a tool to perform static analysis to your code. Sometimes, tools like this
save you some time detecting typos or silly mistakes in your code:

```bash
$ yarn lint
```

Or do both at the same time:

```bash
$ yarn test && yarn lint

```

## Making Your First Module

Usually, tests on this track will load your implementation importing it as a module: `import Bob from './bob';`. To make it work, you just
needs to export your implementation from the file the tests are looking for
your module, `bob.ts`:

```javascript
export default class Bob {
  hey(message: string) {
	//
	// Your solution to the exercise goes here
	//
  }
}
```

Version data entries

295 entries across 295 versions & 1 rubygems

Version Path
trackler-2.2.1.180 tracks/typescript/docs/TESTS.md
trackler-2.2.1.179 tracks/typescript/docs/TESTS.md
trackler-2.2.1.178 tracks/typescript/docs/TESTS.md
trackler-2.2.1.177 tracks/typescript/docs/TESTS.md
trackler-2.2.1.176 tracks/typescript/docs/TESTS.md
trackler-2.2.1.175 tracks/typescript/docs/TESTS.md
trackler-2.2.1.174 tracks/typescript/docs/TESTS.md
trackler-2.2.1.173 tracks/typescript/docs/TESTS.md
trackler-2.2.1.172 tracks/typescript/docs/TESTS.md
trackler-2.2.1.171 tracks/typescript/docs/TESTS.md
trackler-2.2.1.170 tracks/typescript/docs/TESTS.md
trackler-2.2.1.169 tracks/typescript/docs/TESTS.md
trackler-2.2.1.167 tracks/typescript/docs/TESTS.md
trackler-2.2.1.166 tracks/typescript/docs/TESTS.md
trackler-2.2.1.165 tracks/typescript/docs/TESTS.md
trackler-2.2.1.164 tracks/typescript/docs/TESTS.md
trackler-2.2.1.163 tracks/typescript/docs/TESTS.md
trackler-2.2.1.162 tracks/typescript/docs/TESTS.md
trackler-2.2.1.161 tracks/typescript/docs/TESTS.md
trackler-2.2.1.160 tracks/typescript/docs/TESTS.md