Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 821 Bytes

Readme.md

File metadata and controls

23 lines (17 loc) · 821 Bytes

Factorio test

A testing framework for factorio mods. Test real setups in-game, no mocking necessary!

describe("the factory", function()
    it("must grow", function()
        assert.is_true(get_factory_size() > old_factory_size)
    end)
end)

Getting started

For setting up your mod, see the wiki page on getting started.