We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f71d672 commit b5310a0Copy full SHA for b5310a0
test/effects/ASCIIEffect.js
@@ -0,0 +1,11 @@
1
+import test from "ava";
2
+import { ASCIIEffect } from "postprocessing";
3
+
4
+test("can be created and destroyed", t => {
5
6
+ const object = new ASCIIEffect({ asciiTexture: null });
7
+ object.dispose();
8
9
+ t.pass();
10
11
+});
0 commit comments