Maison >interface Web >js tutoriel >Réaliser des tests à l'aide de node-plug
Installation
npm install node-plug
Créez ensuite un fichier, par exemple plugin.js, puis créez un code comme celui-ci
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() }, }*/
Créez ensuite un fichier main.js ou 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'])
Le code ci-dessus s'affichera :
Mais si :
import { addPlugin, runPlugin, test } from 'node-plug' import { t } from './plugin.js' // Menambahkan plugin addPlugin(t) // Menjalankan plugin runPlugin() // Melakukan pengujian test(['foo'])
Ensuite, le test a été exécuté avec succès
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!