Ostendo Technologies
  • Home
  • About

Software Testing

A collection of 28 posts
Mocha or Node.js Mocha Tests
Software Testing

Basic Node.js Test With Mocha

Here is an example of a test written in Mocha, a popular JavaScript testing framework for Node.js: const assert = require('assert'); describe('my test', () => { it('should run a test', () => { const x = 1; const y = 1; assert.equal(x, y); }); }); This code defines a test using Mocha's describe and it
Dec 9, 2022 — 1 min read
How To Approach Test Automation
Software Testing

How To Approach Test Automation

Introduction Automated testing is in the minds of most software testers, but it is not as easy as it seems. There are many considerations to make before you get started with automated testing. In this article, we will explore some of the different aspects of test automation and how they
Oct 29, 2022 — 3 min read
Software Security Testing 101
Agile Software Delivery

Software Security Testing 101

This post discusses an approach to web security testing as recommended by the Open Web Application Security Project aka OWASP Foundation. Web security is complicated and broad, and many of the risks can be mitigated by following an approach called the OWASP top 10. This approach while not 100% full
Oct 22, 2022 — 2 min read
Ostendo Technologies © 2025
  • Sign up
Powered by Ghost