首頁 > web前端 > js教程 > 使用node-plug進行測試

使用node-plug進行測試

Susan Sarandon
發布: 2025-01-05 13:29:40
原創
751 人瀏覽過

安裝

npm install node-plug
登入後複製

然後建立一個文件,例如plugin.js,然後建立這樣的程式碼

export const t = {
  async run() {
    await console.log('foo')
  },
}

// atau
/*const test = 'foo'

export const t = {
  async run() {
    await console.log(test)
  },
}*/

// atau
/*const test = {
  run() {
    console.log('foo')
  },
}

export const t = {
  async run() {
    await test.run()
  },
}*/
登入後複製

然後建立一個main.js或index.js檔案

import { addPlugin, runPlugin, test } from 'node-plug'
import { t } from './plugin.js'

// Menambahkan plugin
addPlugin(t)

// Menjalankan plugin
runPlugin()

// Melakukan pengujian
test(['bar'])
登入後複製

上面的程式碼會顯示:

Melakukan test menggunakan node-plug

但是如果:

import { addPlugin, runPlugin, test } from 'node-plug'
import { t } from './plugin.js'

// Menambahkan plugin
addPlugin(t)

// Menjalankan plugin
runPlugin()

// Melakukan pengujian
test(['foo'])
登入後複製

然後測試執行成功

Melakukan test menggunakan node-plug

以上是使用node-plug進行測試的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板