Skip to content
This repository has been archived by the owner on Jul 30, 2018. It is now read-only.

Refactor harness for support for Sub Tree Rendering #102

Merged
merged 33 commits into from
Jan 30, 2018
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
52af0fc
initial rewrite
agubler Jan 22, 2018
b8c37c2
add selector support and custom diffing
agubler Jan 23, 2018
69ca61e
instantiate widget on harness call
agubler Jan 23, 2018
0ebe650
order the properties for the assertion
agubler Jan 24, 2018
ea39adb
Extend tests to have widget children
agubler Jan 24, 2018
f98e5c6
Add support for custom property comparators on harness setup
agubler Jan 24, 2018
ed9b4fd
Enhance supported selectors and increase test coverage
agubler Jan 24, 2018
bbc7bb8
add tsx unit tests
agubler Jan 25, 2018
b14528d
update the name of the custom compare function
agubler Jan 25, 2018
6b6522c
README
agubler Jan 25, 2018
10774cd
tweak readme and package.json
agubler Jan 25, 2018
81bea14
Support widget names for IE11
agubler Jan 25, 2018
627868a
Support for array fragments
agubler Jan 25, 2018
76877d9
Support map and set properties for comparison
agubler Jan 25, 2018
038f6f5
fix up unit test
agubler Jan 25, 2018
365d903
tweak readme
agubler Jan 25, 2018
5e124c4
remove tar
agubler Jan 25, 2018
61835b2
use DNode decorate function from widget-core
agubler Jan 25, 2018
07413c8
README
agubler Jan 26, 2018
3e2272a
clean up the decorate
agubler Jan 26, 2018
f4deb91
do not need to cast to any
agubler Jan 26, 2018
019e2b0
improve assertion error reporting
agubler Jan 27, 2018
018718b
Check trigger function exists before calling, give clearer compare in…
agubler Jan 29, 2018
53a2f5b
Support deferred properties
agubler Jan 29, 2018
8abdee5
Support functional selector for property on trigger
agubler Jan 29, 2018
110aa05
Add typings to expect API
agubler Jan 29, 2018
b654207
Add test for pseudo selectors
agubler Jan 29, 2018
f82ad5d
Add doRender API
agubler Jan 29, 2018
2adb706
Add getRender and support passing an actual render function to expect
agubler Jan 30, 2018
7d0379d
mark hasDeferredProperties as true if found
agubler Jan 30, 2018
081a25d
update test for IE11
agubler Jan 30, 2018
8cc641a
README
agubler Jan 30, 2018
a168b25
package-lock.json
agubler Jan 30, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
753 changes: 136 additions & 617 deletions README.md

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion intern.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"options": {
"packages": [
{ "name": "src", "location": "_build/src" },
{ "name": "tests", "location": "_build/tests" }
{ "name": "tests", "location": "_build/tests" },
{ "name": "css-select-umd", "location": "node_modules/css-select-umd", "main": "dist/index.js" },
{ "name": "diff", "location": "node_modules/diff", "main": "dist/diff.js" }
]
}
}
Expand Down
Loading