fix: delete old js test

This commit is contained in:
Raffael Meyer 2020-09-16 11:17:14 +02:00 committed by GitHub
parent cffa9b08ac
commit af40088fbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,23 +0,0 @@
/* eslint-disable */
// rename this file from _test_[name] to test_[name] to activate
// and remove above this line
QUnit.test("test: Token Cache", function (assert) {
let done = assert.async();
// number of asserts
assert.expect(1);
frappe.run_serially([
// insert a new Token Cache
() => frappe.tests.make('Token Cache', [
// values to be set
{key: 'value'}
]),
() => {
assert.equal(cur_frm.doc.key, 'value');
},
() => done()
]);
});