Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 2.32 KB

README.md

File metadata and controls

59 lines (44 loc) · 2.32 KB
                              ,------.        ,--.       ,--.
                              |  .--. ',---.,-'  '-.,---.|  ,--. ,--.
                              |  '--'.| .-. '-.  .-(  .-'|  |\  '  /
                              |  |\  \\   --. |  | .-'  `|  | \   '
                              `--' '--'`----' `--' `----'`--.-'  /
                                Make Real Estate Apps in    `---'
                                   Minutes Not Months

A test-driven JS interview

This repo includes a set of tests that can be used to assess the skills of a candidate for a JavaScript position, or to improve one's own skills.

I want to work on the tests; what do I do?

To use the tests, you will need to install Node -- you can do this via the download page or using Homebrew if you are on a Mac.

You can clone or download this repo. Once you have done so, from the root directory of the repo, run:

npm install
node bin/serve

You can then view the tests in your browser at http://localhost:4444.

When you visit that page, all of the tests should be failing; your job is to get the tests to pass. To do this, you'll need to refer to the tests in the files in the tests/app directory, and edit the files in the app/ directory. Once you update a test, you can reload the test page in the browser to see whether it worked.

You can also develop with live-reload and grunt-watch if that's your thing:

npm install -g grunt-cli
npm install
grunt develop

License

Copyright © 2012 Rebecca Murphey.

This work is licensed under the Creative Commons Attribution-Share Alike 3.0 license. You are free to share and remix the work, and to use it for commercial purposes under the following conditions:

  • Attribution — You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).
  • Share Alike — If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.

Any of these conditions can be waived if you get permission from the copyright holder.