mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 03:49:56 +00:00
ece8b0ee01
* Initial Commit
* Add note to preview build
* Fix whitespace and indenting
Thanks @pmario
* Fix crash with unset $tiddler attribute on <$data> widget
Thanks @CodaCodr
* Don't duplicate "description" field in test cases
* Use different background colours for nested testcase widgets
* Extend the testcase widget to run tests
* Add testcases to control panel
* Add a view template body template to render testcase tiddlers
* Test edition should display testcases
* Whitespace fixes
* Make testcase tiddler tempalte link to itself
* Styling tweaks
* Docs improvements
* Styling tweaks
* Run the new tw5.com testcases in the test edition
* Update data widget to display its content in JSON
* Add testcase convenience procedure
* Clearer testcases for data widget, and docs tweaks
* Don't expect our intentionally failing test to pass
* Extend testcase default template so that the display format can be chosen
It is selected by setting the variable "displayFormat"
* DataWidget docs typo
* Fix data widget not refreshing
* Links in testcase output switch to the tab containing that tiddler
Thanks to @btheado for the suggestion
* Docs update for 648855e8a5
* Wording tweak
* Add support for narrative tiddlers in test cases
* Documentation improvements
* Cleanup comments
* Remove obsolete code comments
* Simplify template
* Docs update
* Rename $:/core/ui/testcases/DefaultTemplate/SourceTabs from $:/core/ui/testcases/DefaultTemplate/Source
* Use the view template body for failing tests
* Don't reference the geospatial plugin
* "Test case" should be two words
* Fix handling of currentTiddler variable
Fixes problem reported by @btheado in https://github.com/Jermolene/TiddlyWiki5/pull/7817#issuecomment-2103704468
* Prepare for merging
28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
title: TestCaseTiddlers
|
|
modified: 20240507221902644
|
|
created: 20240507221902644
|
|
tags: Concepts
|
|
|
|
Test case tiddlers encapsulate one or more tiddlers that can be displayed as a [[test case|TestCaseWidget]]: an independent embedded wiki that can be used for testing or learning purposes.
|
|
|
|
Test case tiddlers are formatted as CompoundTiddlers, allowing them to contain multiple tiddlers packed into one.
|
|
|
|
Test case tiddlers have the following fields:
|
|
|
|
|!Field |!Description |
|
|
|<<.field type>> | Should be set to `text/vnd.tiddlywiki-multiple` |
|
|
|<<.field tags>> | Test cases are tagged [[$:/tags/wiki-test-spec]]. Test cases that intentionally fail are tagged [[$:/tags/wiki-test-spec-failing]] |
|
|
|<<.field description>> |Descriptive heading for the test, intended to make it easy to identify the test |
|
|
|<<.field display-format>> |Optional, defaults to `wikitext`. Set to `plaintext` to cause the output to be rended as plain text |
|
|
|
|
Test case tiddlers with the appropriate tag are shown in $:/ControlPanel
|
|
|
|
Some payload tiddlers are set aside for special purposes:
|
|
|
|
|!Tiddler |!Description |
|
|
|''Narrative'' |Narrative description of the test, intended to explain the purpose and operation of the test |
|
|
|''Output'' |The tiddler that produces the test output |
|
|
|''~ExpectedResult'' |HTML of expected result of rendering the ''Output'' tiddler |
|
|
|
|
|