chore: preparing for the move
This commit is contained in:
18
curriculum/unpacked.js
Normal file
18
curriculum/unpacked.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/* eslint-disable no-unused-vars,max-len */
|
||||
window._ = require('lodash');
|
||||
window.test = require('tape').test;
|
||||
|
||||
// check for Browser TAP chrome extension, available here:
|
||||
// https://chrome.google.com/webstore/detail/browser-tap/ncfblaiipckncgeipgmpdioedcdmofei?hl=en
|
||||
if (window.tapExtension) {
|
||||
window.test = window.tapExtension(window.test);
|
||||
}
|
||||
|
||||
window.addAssertsToTapTest = require('./addAssertsToTapTest');
|
||||
window.$ = require('jquery');
|
||||
|
||||
test('framework', function(t) {
|
||||
t.plan(1);
|
||||
t.equal(1, 1, 'one equals one');
|
||||
});
|
||||
|
Reference in New Issue
Block a user