tildeio / simple-html-tokenizer

A lightweight JavaScript library for tokenizing non-`<script>` HTML expected to be found in the `<body>` of a document
MIT License
84 stars 33 forks source link

Extracting the test runner code to test against a vanilla app. #47

Open quantuminformation opened 7 years ago

quantuminformation commented 7 years ago

Hi guys!

What is the minimum that I need to extract from this repo in order to test my app hosted here: https://github.com/QuantumInformation/test-recorder/blob/master/tests/server.js

I already have a nightwatch setup: https://github.com/QuantumInformation/test-recorder/tree/master/tests/nightwatch

For context this project started out as a pure ember one: https://github.com/QuantumInformation/ember-cli-test-recorder

I just want to make sure the generated tests work with the ember test runner, so that people can use the generated code in their ember apps e2e tests. I just don't want to maintain an ember example in in this repo, I just want to use this vanilla app which will cover all the test scenarios. https://github.com/QuantumInformation/test-recorder/blob/master/tests/index.ts

Thanks!

ps the recorder in action:

image

tunnckoCore commented 7 years ago

What are you talking about? And how this issue relates to this projects, even more to its QUnit tests with just asserts with no clicks and such things?

quantuminformation commented 7 years ago

Ember-cli has an amazing integration test runner, I'm looking to use it in a non ember project. I'm wondering if I can use it standalone, as an alternative to nightwatch for example.