Files
formipay/node_modules/thunky/test.js
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

123 lines
2.0 KiB
JavaScript

var tape = require('tape')
var thunky = require('./')
tape('run only once', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
ran++
cb()
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
})
tape('run only once async', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
process.nextTick(function () {
ran++
cb()
})
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
})
tape('re-run on error', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
ran++
cb(new Error('stop'))
})
run(function () {
t.same(ran, 1, 'ran once')
run(function () {
t.same(ran, 2, 'ran once')
run(function () {
t.same(ran, 3, 'ran once')
})
})
})
})
tape('pass arguments', function (t) {
t.plan(6)
var ran = 0
var run = thunky(function (fn) {
ran++
fn({ hello: 'world' })
})
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
})
})
})
})
tape('callback is optional', function (t) {
t.plan(2)
var ran = 0
var run = thunky(function (fn) {
ran++
fn({ hello: 'world' })
})
run()
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
})
})
tape('always async', function (t) {
t.plan(2)
var run = thunky(function (cb) {
process.nextTick(cb)
})
var sync = true
run(function () {
t.ok(!sync, 'not sync')
var innerSync = true
run(function () {
t.ok(!innerSync, 'not sync')
})
innerSync = false
})
sync = false
})