Sha256: f0b337f69a50636534526d576611960afa9326b057f2e1364221bd219364cc3a

Contents?: true

Size: 1.02 KB

Versions: 84

Compression:

Stored size: 1.02 KB

Contents

# Clock

Implement a clock that handles times without dates.

You should be able to add and subtract minutes to it.

Two clocks that represent the same time should be equal to each other.

## Setup

Go through the setup instructions for JavaScript to install the
 necessary dependencies:

http://exercism.io/languages/javascript/installation

## Running the test suite

The provided test suite uses [Jasmine](https://jasmine.github.io/).
You can install it by opening a terminal window and running the
following command:

```sh
npm install -g jasmine
```

Run the test suite from the exercise directory with:

```sh
jasmine clock.spec.js
```

In many test suites all but the first test have been marked "pending".
Once you get a test passing, activate the next one by changing `xit` to `it`.

## Source

Pairing session with Erin Drummond [https://twitter.com/ebdrummond](https://twitter.com/ebdrummond)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/javascript/exercises/clock/README.md
trackler-2.2.1.97 tracks/javascript/exercises/clock/README.md
trackler-2.2.1.96 tracks/javascript/exercises/clock/README.md
trackler-2.2.1.95 tracks/javascript/exercises/clock/README.md