wait in background

can a wait command be run in background? or the script which has the wait command, be run background?

test.sh
-------
nohup a.sh &
nohup b.sh &
wait

nohup test.sh &

How can i run either wait or test.sh in background? i want test.sh to wait till a.sh and b.sh complete, and must be able to use ps with grep command to see if test.sh is running...

Regards,
Albert

Did you try it?

If so, what happened? Did it work?

If not, why not?