Skip to content

Commit

Permalink
Fix test script bug due to missing directory (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
seancrowe authored Sep 11, 2023
1 parent f511776 commit 95ac51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function main() {

const copyPISuccess = await new Promise((res) => {
exec(
"cp ./dist/PublisherInterface.min.js ./test/dist/PublisherInterface.min.js",
"mkdir -p ./test/dist && cp ./dist/PublisherInterface.min.js ./test/dist/PublisherInterface.min.js",
(error, stdout, stderr) => {
if (error) {
res([false, error]);
Expand Down

0 comments on commit 95ac51a

Please sign in to comment.