在听了JavaScript Weekly播客后,我听说了jQueryLocalStorageTexteareas插件,我决定尝试自己实现这个。
如果浏览器支持,它基本上将textarea的内容保存到浏览器的本地存储中。
我的问题是,我怎么用TDD风格写这个?最高级别的测试实现如何?它可能应该像
when I type foo in a text area
and I close the page
and I open it again
then the text area should contain foo
使用像Selenium这样的东西来实现这些测试是否值得?或者有更好的方法吗?