Skip to content

Instantly share code, notes, and snippets.

@stlsmiths
Created January 9, 2013 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stlsmiths/4489346 to your computer and use it in GitHub Desktop.
Save stlsmiths/4489346 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>gallery-datatable-popup</title>
<script src="/build/yui/yui.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="dtable"></div>
<div id="logger"></div>
<script src="js/test-dt-popup.js"></script>
<script>
YUI({
coverage: ['gallery-datatable-popup'],
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'raw'
}).use( 'test-console', 'test', 'module-tests-dtpopup', "node-event-simulate",
'datatable',
'gallery-datatable-editable',
'gallery-datatable-celleditor-popup',
function(Y) {
(new Y.Test.Console()).render('#logger');
Y.Test.Runner.setName('gallery-datatable-popup');
Y.Test.Runner.run();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment