mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
123 lines
2.0 KiB
JavaScript
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
|
|
})
|